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 848d233 commit 2c4b16bCopy full SHA for 2c4b16b
lib/model/store.dart
@@ -327,7 +327,9 @@ class PerAccountStore extends ChangeNotifier {
327
for (final view in _messageListViews) {
328
view.maybeUpdateMessageFlags(event);
329
}
330
+ final stopwatch = Stopwatch()..start();
331
unreads.handleUpdateMessageFlagsEvent(event);
332
+ print('handleUpdateMessageFlagsEvent: ${(stopwatch..stop()).elapsed.inMilliseconds}ms');
333
} else if (event is ReactionEvent) {
334
assert(debugLog("server event: reaction/${event.op}"));
335
0 commit comments