diff --git a/lib/pages/chat/chat.dart b/lib/pages/chat/chat.dart index 78b3eff3..6824f6f9 100644 --- a/lib/pages/chat/chat.dart +++ b/lib/pages/chat/chat.dart @@ -376,6 +376,10 @@ class ChatController extends State { room.setTyping(false); currentlyTyping = false; } + // then cancel the old timeline + // fixes bug with read reciepts and quick switching + loadTimelineFuture = _getTimeline(eventContextId: room.fullyRead); + // then set the new sending client setState(() => sendingClient = c); }