fix: #13094, update unread chats on reconnect

unread topics and notifications were updated on reconnections, added chats as well
convert function to async added awaits
This commit is contained in:
Barış Soner Uşaklı
2025-03-09 12:03:09 -04:00
parent 6b9f166cb8
commit 1e6c6f4e44
3 changed files with 12 additions and 15 deletions

View File

@@ -269,12 +269,9 @@ describe('socket.io', () => {
});
});
it('should push unread notifications on reconnect', (done) => {
it('should push unread notifications/chats on reconnect', async () => {
const socketMeta = require('../src/socket.io/meta');
socketMeta.reconnected({ uid: 1 }, {}, (err) => {
assert.ifError(err);
done();
});
await socketMeta.reconnected({ uid: 1 }, {});
});