From 7f4a1cd685add7ed87a9144e6639527312f0957a Mon Sep 17 00:00:00 2001 From: Baris Soner Usakli Date: Wed, 12 Feb 2014 17:24:51 -0500 Subject: [PATCH] display 4 rows of active users --- src/categories.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/categories.js b/src/categories.js index 0804b8a889..a7789a768a 100644 --- a/src/categories.js +++ b/src/categories.js @@ -411,7 +411,7 @@ var db = require('./database'), }; Categories.getActiveUsers = function(cid, callback) { - db.getSortedSetRevRange('cid:' + cid + ':active_users', 0, 15, callback); + db.getSortedSetRevRange('cid:' + cid + ':active_users', 0, 31, callback); }; Categories.moveActiveUsers = function(tid, oldCid, cid, callback) {