mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-08 06:55:46 +01:00
fix missing comma
This commit is contained in:
@@ -20,7 +20,7 @@ SocketCategories.get = function(socket, data, callback) {
|
||||
|
||||
SocketCategories.getWatchedCategories = function(socket, data, callback) {
|
||||
async.parallel({
|
||||
categories: async.apply(categories.getCategoriesByPrivilege, socket.uid, 'find')
|
||||
categories: async.apply(categories.getCategoriesByPrivilege, socket.uid, 'find'),
|
||||
ignoredCids: async.apply(user.getIgnoredCategories, socket.uid)
|
||||
}, function(err, results) {
|
||||
if (err) {
|
||||
|
||||
Reference in New Issue
Block a user