fix: dont show chat notif if you are already in the room

mark all notifs from chat read when you you mark the chat room read
This commit is contained in:
Barış Soner Uşaklı
2023-08-24 22:42:36 -04:00
parent 2930892aa7
commit 3d6668e7f0
3 changed files with 8 additions and 0 deletions

View File

@@ -6,6 +6,7 @@ const db = require('../database');
const user = require('../user');
const meta = require('../meta');
const messaging = require('../messaging');
const notifications = require('../notifications');
const plugins = require('../plugins');
const privileges = require('../privileges');
@@ -156,6 +157,9 @@ chatsAPI.mark = async (caller, data) => {
} else {
await messaging.markRead(caller.uid, roomId);
socketHelpers.emitToUids('event:chats.markedAsRead', { roomId: roomId }, [caller.uid]);
const nids = await user.notifications.getUnreadByField(caller.uid, 'roomId', [roomId]);
await notifications.markReadMultiple(nids, caller.uid);
user.notifications.pushCount(caller.uid);
}
socketHelpers.emitToUids('event:chats.mark', { roomId, state }, [caller.uid]);