We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f52ce7f commit 59a2f67Copy full SHA for 59a2f67
lib/model/unreads.dart
@@ -453,12 +453,8 @@ class Unreads extends PerAccountStoreBase with ChangeNotifier {
453
final newlyUnreadInDms = <DmNarrow, QueueList<int>>{};
454
for (final messageId in event.messages) {
455
final detail = event.messageDetails![messageId];
456
- if (detail == null) { // TODO(log) if on Zulip 6.0+
457
- // Happens as a bug in some cases before fixed in Zulip 6.0:
458
- // https://chat.zulip.org/#narrow/stream/378-api-design/topic/unreads.20in.20unsubscribed.20streams/near/1458467
459
- // TODO(server-6) remove Zulip 6.0 comment
460
- continue;
461
- }
+ if (detail == null) continue; // TODO(log)
+
462
if (detail.mentioned == true) {
463
mentions.add(messageId);
464
}
0 commit comments