fix missing comma

This commit is contained in:
Barış Soner Uşaklı
2015-05-26 15:10:31 -04:00
parent 7bed4c40d6
commit a065a73637

View File

@@ -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) {