From 4e5d120763925649795bfbf966124c18512656cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Soner=20U=C5=9Fakl=C4=B1?= Date: Sat, 22 Oct 2016 10:24:25 +0300 Subject: [PATCH] closes #5142 --- src/socket.io/modules.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/socket.io/modules.js b/src/socket.io/modules.js index 011a68567f..263ff76a29 100644 --- a/src/socket.io/modules.js +++ b/src/socket.io/modules.js @@ -166,12 +166,12 @@ SocketModules.chats.addUserToRoom = function (socket, data, callback) { } async.parallel({ settings: async.apply(user.getSettings, uid), - isAdmin: async.apply(user.isAdministrator, socket.uid), + isAdminOrGlobalMod: async.apply(user.isAdminOrGlobalMod, socket.uid), isFollowing: async.apply(user.isFollowing, uid, socket.uid) }, next); }, function (results, next) { - if (results.settings.restrictChat && !results.isAdmin && !results.isFollowing) { + if (results.settings.restrictChat && !results.isAdminOrGlobalMod && !results.isFollowing) { return next(new Error('[[error:chat-restricted]]')); }