mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-03 12:36:02 +01:00
various group chat fixes #3980
fix multiple modals using the same tagsinput fix online user getting chat notification fix owner not being able to remove users in the chat modal
This commit is contained in:
@@ -59,7 +59,7 @@ module.exports = function(Messaging) {
|
||||
}
|
||||
|
||||
uids = uids.filter(function(uid, index) {
|
||||
return isOnline[index] && parseInt(fromuid, 10) !== parseInt(uid, 10);
|
||||
return !isOnline[index] && parseInt(fromuid, 10) !== parseInt(uid, 10);
|
||||
});
|
||||
|
||||
if (!uids.length) {
|
||||
|
||||
Reference in New Issue
Block a user