This commit is contained in:
Baris Soner Usakli
2013-11-27 22:02:50 -05:00
parent 69427fa10e
commit fdf5227c35

View File

@@ -410,8 +410,8 @@ var RDB = require('./redis'),
// temporary. I don't think this call should belong here
function getPrivileges(next) {
CategoryTools.privileges(category_id, current_user, function(user_privs) {
next(null, user_privs);
CategoryTools.privileges(category_id, current_user, function(err, user_privs) {
next(err, user_privs);
});
}