mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-08 15:05: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) {
|
SocketCategories.getWatchedCategories = function(socket, data, callback) {
|
||||||
async.parallel({
|
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)
|
ignoredCids: async.apply(user.getIgnoredCategories, socket.uid)
|
||||||
}, function(err, results) {
|
}, function(err, results) {
|
||||||
if (err) {
|
if (err) {
|
||||||
|
|||||||
Reference in New Issue
Block a user