Fix updating read marker automatically

Co-authored-by: Benoit Marty <benoitm@matrix.org>
This commit is contained in:
SpiritCroc 2021-05-01 11:35:39 +02:00
parent 8edbd323de
commit e3204c32a1
2 changed files with 2 additions and 1 deletions

View file

@ -17,6 +17,7 @@ Bugfix 🐛:
- Fix issue when opening encrypted files (#3186)
- Fix wording issue (#3242)
- Fix missing sender information after edits (#3184)
- Fix read marker not updating automatically (#3267)
Translations 🗣:
-

View file

@ -550,7 +550,7 @@ class RoomDetailViewModel @AssistedInject constructor(
private fun stopTrackingUnreadMessages() {
if (trackUnreadMessages.getAndSet(false)) {
mostRecentDisplayedEvent?.root?.eventId?.also {
viewModelScope.launch {
session.coroutineScope.launch {
tryOrNull { room.setReadMarker(it) }
}
}