mirror of
https://github.com/cinnyapp/cinny.git
synced 2025-11-06 23:30:28 +03:00
Fix getAllParent including itself
Signed-off-by: Ajay Bura <ajbura@gmail.com>
This commit is contained in:
parent
5e9b45ad5f
commit
fe18611b4b
2 changed files with 7 additions and 8 deletions
|
|
@ -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);
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue