diff --git a/src/helpers/NotificationsHelper.ts b/src/helpers/NotificationsHelper.ts index 420ea97..0c2004f 100644 --- a/src/helpers/NotificationsHelper.ts +++ b/src/helpers/NotificationsHelper.ts @@ -91,7 +91,7 @@ export class NotificationsHelper { private static async SimilarExists(n: Notif) : Promise { return await DatabaseHelper.Count({ table: NOTIFICATIONS_TABLE, - where: this.NotifToDB(n) + where: this.NotifToDB(n, false) }) > 0; }