2
0
mirror of https://gitlab.com/famedly/fluffychat.git synced 2025-04-09 09:28:10 +02:00

Dont request history on chat open

This commit is contained in:
Christian Pauly 2020-07-04 12:17:31 +02:00
parent c1c6659ce0
commit 2ce6ac6b95

@ -157,9 +157,6 @@ class _ChatState extends State<_Chat> {
if (timeline.events.isNotEmpty) {
unawaited(room.sendReadReceipt(timeline.events.first.eventId));
}
if (timeline.events.length < _loadHistoryCount) {
requestHistory();
}
}
updateView();
return true;