This commit is contained in:
Baris Soner Usakli
2014-02-10 19:59:04 -05:00
parent fba16fdfce
commit cacde313cd
2 changed files with 2 additions and 2 deletions

View File

@@ -20,7 +20,7 @@ SocketCategories.loadMore = function(socket, data, callback) {
user.getSettings(socket.uid, function(err, settings) {
var start = parseInt(data.after, 10),
end = start + settings.topicsPerPage - 1;
end = start + settings.topicsPerPage - 1;
categories.getCategoryTopics(data.cid, start, end, socket.uid, callback);
});