math.ceil pageCount

This commit is contained in:
Baris Usakli
2017-05-25 14:40:18 -04:00
parent d018fe4854
commit b9b02a1fab

View File

@@ -70,7 +70,7 @@ notificationsController.get = function (req, res, next) {
user.notifications.getAll(req.uid, selectedFilter.filter, _next); user.notifications.getAll(req.uid, selectedFilter.filter, _next);
}, },
function (nids, next) { function (nids, next) {
pageCount = nids.length / itemsPerPage; pageCount = Math.max(1, Math.ceil(nids.length / itemsPerPage));
nids = nids.slice(start, stop + 1); nids = nids.slice(start, stop + 1);
user.notifications.getNotifications(nids, req.uid, next); user.notifications.getNotifications(nids, req.uid, next);