2
0
mirror of https://github.com/inventree/inventree-app.git synced 2025-07-01 11:20:41 +00:00

Notification frequency (#662)

* Adjust notification check frequency

- 60s vs 5s

* Bump release notes
This commit is contained in:
Oliver
2025-06-23 20:11:20 +10:00
committed by GitHub
parent a18c5d8354
commit e9db6532e4
2 changed files with 2 additions and 1 deletions

View File

@ -680,7 +680,7 @@ class InvenTreeAPI {
if (_notification_timer == null) {
debug("starting notification timer");
_notification_timer = Timer.periodic(
Duration(seconds: 5),
Duration(seconds: 60),
(timer) {
_refreshNotifications();
});