mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-10-27 09:06:15 +01:00
fix: #9420, paginate after loading notifications
This commit is contained in:
@@ -51,11 +51,12 @@ notificationsController.get = async function (req, res, next) {
|
|||||||
if (!selectedFilter) {
|
if (!selectedFilter) {
|
||||||
return next();
|
return next();
|
||||||
}
|
}
|
||||||
let nids = await user.notifications.getAll(req.uid, selectedFilter.filter);
|
|
||||||
const pageCount = Math.max(1, Math.ceil(nids.length / itemsPerPage));
|
|
||||||
nids = nids.slice(start, stop + 1);
|
|
||||||
|
|
||||||
const notifications = await user.notifications.getNotifications(nids, req.uid);
|
const nids = await user.notifications.getAll(req.uid, selectedFilter.filter);
|
||||||
|
let notifications = await user.notifications.getNotifications(nids, req.uid);
|
||||||
|
|
||||||
|
const pageCount = Math.max(1, Math.ceil(notifications.length / itemsPerPage));
|
||||||
|
notifications = notifications.slice(start, stop + 1);
|
||||||
|
|
||||||
res.render('notifications', {
|
res.render('notifications', {
|
||||||
notifications: notifications,
|
notifications: notifications,
|
||||||
|
|||||||
Reference in New Issue
Block a user