Signed-off-by: Ajay Bura <ajbura@gmail.com>
This commit is contained in:
Ajay Bura 2021-10-29 13:20:27 +05:30
parent 763aa8865b
commit f53f54af7f

View file

@ -121,19 +121,13 @@ function SideBar() {
let noti = null;
orphans.forEach((roomId) => {
if (roomList.spaceShortcut.has(roomId)) return;
if (!notifications.hasNoti(roomId)) return;
if (noti === null) noti = { total: 0, highlight: 0 };
const childNoti = notifications.getNoti(roomId);
noti.total += childNoti.total;
noti.highlight += childNoti.highlight;
});
if (noti === null) return noti;
[...roomList.spaceShortcut].forEach((spaceId) => {
const shortcutNoti = notifications.getNoti(spaceId);
noti.total -= shortcutNoti.total;
noti.highlight -= shortcutNoti.highlight;
});
return noti;
}