Fixed read recipt issue

This commit is contained in:
Ajay Bura 2021-09-13 19:47:40 +05:30
parent 5017d0d5b0
commit 2b7588492a

View file

@ -198,7 +198,9 @@ function RoomViewContent({
}
function trySendingReadReceipt() {
const { room, timeline } = roomTimeline;
if (doesRoomHaveUnread(room) && timeline.length !== 0) {
if (
(doesRoomHaveUnread(room) || initMatrix.notifications.hasNoti(roomId))
&& timeline.length !== 0) {
mx.sendReadReceipt(timeline[timeline.length - 1]);
}
}