fix: Do not set read markers for sending events

This commit is contained in:
Christian Kußowski 2025-06-17 12:25:39 +02:00
parent 816b753efb
commit ad8c0b266d
No known key found for this signature in database
GPG key ID: E067ECD60F1A0652

View file

@ -450,6 +450,7 @@ class ChatController extends State<ChatPageWithRoom>
Future<void>? _setReadMarkerFuture;
void setReadMarker({String? eventId}) {
if (eventId?.isValidMatrixId == false) return;
if (_setReadMarkerFuture != null) return;
if (_scrolledUp) return;
if (scrollUpBannerEventId != null) return;