Skip to content

Commit

Permalink
self messages shouldn't trigger the bottom bar
Browse files Browse the repository at this point in the history
  • Loading branch information
c99koder committed Jul 6, 2013
1 parent 7663358 commit 2cd579c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/com/irccloud/android/MessageViewFragment.java
Original file line number Diff line number Diff line change
Expand Up @@ -906,7 +906,7 @@ else if(op.get("mode").getAsString().equalsIgnoreCase("v"))
if(getListView().getLastVisiblePosition() >= (adapter.getCount() - 1)) {
shouldShowUnread = false;
}
if(!backlog && shouldShowUnread) {
if(!backlog && shouldShowUnread && !event.self) {
if(newMsgTime == 0)
newMsgTime = System.currentTimeMillis();
newMsgs++;
Expand Down

0 comments on commit 2cd579c

Please sign in to comment.