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
@@ -9,7 +9,7 @@ function create() {
async list(acknowledged = false) {
let result;
try {
result = await fetcher.get(`${API_ORIGIN}/api/v1/notifications`, { acknowledged, access_token: accessToken, per_page: 100 });
result = await fetcher.get(`${API_ORIGIN}/api/v1/notifications`, { acknowledged, access_token: accessToken, per_page: 1000 });
} catch (e) {
return [e];
}