Fix undefined QML reference in TimelineView

markAllMessagesAsRead() has moved it seems, and this specific case
wasn't changed.
This commit is contained in:
Joshua Goins
2025-07-15 14:45:19 -04:00
committed by Tobias Fella
parent 34f2c2dabc
commit 4af42a57f4

View File

@@ -159,7 +159,7 @@ QQC2.ScrollView {
function onReadMarkerAdded() {
if (root.markReadCondition == LibNeoChat.TimelineMarkReadCondition.EntryVisible && messageListView.allUnreadVisible()) {
root.room.markAllMessagesAsRead();
_private.room.markAllMessagesAsRead();
}
}