replace .at() with array.length-1

t3chguy/dedup-icons-17oct
Germain 2023-01-18 16:43:18 +00:00
parent 4d2b27a96d
commit f0a7b2886e
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ export function doesRoomOrThreadHaveUnreadMessages(roomOrThread: Room | Thread):
// https://github.com/vector-im/element-web/issues/2427
// ...and possibly some of the others at
// https://github.com/vector-im/element-web/issues/3363
if (roomOrThread.timeline.at(-1)?.getSender() === myUserId) {
if (roomOrThread.timeline[roomOrThread.timeline.length - 1]?.getSender() === myUserId) {
return false;
}