mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2025-03-29 09:19:01 +03:00
Fix updating read marker automatically
Co-authored-by: Benoit Marty <benoitm@matrix.org>
This commit is contained in:
parent
8edbd323de
commit
e3204c32a1
2 changed files with 2 additions and 1 deletions
|
@ -17,6 +17,7 @@ Bugfix 🐛:
|
||||||
- Fix issue when opening encrypted files (#3186)
|
- Fix issue when opening encrypted files (#3186)
|
||||||
- Fix wording issue (#3242)
|
- Fix wording issue (#3242)
|
||||||
- Fix missing sender information after edits (#3184)
|
- Fix missing sender information after edits (#3184)
|
||||||
|
- Fix read marker not updating automatically (#3267)
|
||||||
|
|
||||||
Translations 🗣:
|
Translations 🗣:
|
||||||
-
|
-
|
||||||
|
|
|
@ -550,7 +550,7 @@ class RoomDetailViewModel @AssistedInject constructor(
|
||||||
private fun stopTrackingUnreadMessages() {
|
private fun stopTrackingUnreadMessages() {
|
||||||
if (trackUnreadMessages.getAndSet(false)) {
|
if (trackUnreadMessages.getAndSet(false)) {
|
||||||
mostRecentDisplayedEvent?.root?.eventId?.also {
|
mostRecentDisplayedEvent?.root?.eventId?.also {
|
||||||
viewModelScope.launch {
|
session.coroutineScope.launch {
|
||||||
tryOrNull { room.setReadMarker(it) }
|
tryOrNull { room.setReadMarker(it) }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue