Fetch more notifications to avoid required pagination

This commit is contained in:
Johannes Zellner
2025-12-10 11:57:51 +01:00
parent 388a4d93e4
commit 6620fc8570
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -52,7 +52,7 @@ async function onMarkNotificationRead(notification) {
async function onMarkAllNotificationRead() {
notificationsAllBusy.value = true;
await eachLimit(notifications.value, 2, async (notification) => {
await eachLimit(notifications.value, 5, async (notification) => {
notification.busy = true;
const [error] = await notificationModel.update(notification.id, true);
if (error) return window.cloudron.onError(error);