Compare commits

..

No commits in common. "da3962b9f162473c8c4754c467e2633a07a6a7d5" and "31798c60a29a76d906617d3ca5d92d77316b7d13" have entirely different histories.

View file

@ -226,7 +226,6 @@ GatewayServer.prototype.eventSetup = function() {
socket.on('subscribe', async (categories) => { socket.on('subscribe', async (categories) => {
if ( !socket.isConnected || !socket.user || !categories || !Array.isArray(categories) || categories === []) return; if ( !socket.isConnected || !socket.user || !categories || !Array.isArray(categories) || categories === []) return;
try {
for (const v of categories) { for (const v of categories) {
if (!v && !(typeof v === 'string')) continue; if (!v && !(typeof v === 'string')) continue;
// TODO: When/if category permissions are added, check if the user has permissions for that category // TODO: When/if category permissions are added, check if the user has permissions for that category
@ -243,9 +242,6 @@ GatewayServer.prototype.eventSetup = function() {
this._gateway.in(v).emit('clientListUpdate', upd); this._gateway.in(v).emit('clientListUpdate', upd);
} }
} }
} catch (e) {
return;
}
}); });
socket.on('disconnecting', async () => { socket.on('disconnecting', async () => {