Skip to content

Commit 016995e

Browse files
committed
Fix bug for the mutedMessages
1 parent a93948e commit 016995e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/main/java/com/zulip/android/activities/MessageListFragment.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ public void onMessages(Message[] messages, LoadPosition pos,
372372
if (stream != null && filter == null) { //Filter muted messages only in homescreen.
373373
if (app.isTopicMute(message)) {
374374
mListener.addToList(message);
375-
return;
375+
continue;
376376
}
377377
}
378378
if (filter == null && stream != null && !stream.getInHomeView()) {

0 commit comments

Comments
 (0)