fix: made user room number a string for added flexibility

This commit is contained in:
2025-05-06 21:45:48 +02:00
parent 2dc447a446
commit 9423b4804a
7 changed files with 11 additions and 11 deletions

View File

@@ -41,7 +41,7 @@ export class NotifcationHelper {
user: async (uname: string) => {
return await this.send(message, await Notification.aggregate(userNotif(uname)))
},
room: async (room: number) => {
room: async (room: string) => {
return await this.send(message, await Notification.aggregate(roomNotif(room)))
},
group: async (group: string) => {