Fix getAllParent including itself

Signed-off-by: Ajay Bura <ajbura@gmail.com>
This commit is contained in:
Ajay Bura 2022-03-14 17:31:57 +05:30
parent 5e9b45ad5f
commit fe18611b4b
2 changed files with 7 additions and 8 deletions

View file

@ -117,7 +117,7 @@ class Notifications extends EventEmitter {
if (addT < 0 || addH < 0) return;
addNoti(roomId, addT, addH);
const allParentSpaces = this.roomList.getParentSpaces(roomId);
const allParentSpaces = this.roomList.getAllParentSpaces(roomId);
allParentSpaces.forEach((spaceId) => {
addNoti(spaceId, addT, addH, roomId);
});
@ -149,7 +149,7 @@ class Notifications extends EventEmitter {
};
removeNoti(roomId, total, highlight);
const allParentSpaces = this.roomList.getParentSpaces(roomId);
const allParentSpaces = this.roomList.getAllParentSpaces(roomId);
allParentSpaces.forEach((spaceId) => {
removeNoti(spaceId, total, highlight, roomId);
});