Compare commits
2 commits
31798c60a2
...
da3962b9f1
Author | SHA1 | Date | |
---|---|---|---|
|
da3962b9f1 | ||
|
6c5470e6b1 |
1 changed files with 19 additions and 15 deletions
|
@ -226,6 +226,7 @@ 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
|
||||||
|
@ -242,6 +243,9 @@ 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 () => {
|
||||||
|
|
Reference in a new issue