Limit amount of updates loaded for widget

Probably fixes #9868
This commit is contained in:
arkon
2023-08-27 22:05:52 -04:00
parent 98d6ce2eaf
commit 87530f506e
5 changed files with 28 additions and 26 deletions

View File

@@ -30,4 +30,5 @@ getUpdatesByReadStatus:
SELECT *
FROM updatesView
WHERE read = :read
AND dateUpload > :after;
AND dateUpload > :after
LIMIT :limit;