mirror of
https://github.com/appwrite/console.git
synced 2026-06-06 19:27:48 +00:00
fix: check every 10 hours
This commit is contained in:
@@ -30,7 +30,7 @@
|
||||
feedback.toggleNotification();
|
||||
} else if (minutes > 60 && $feedback.visualized === 0) {
|
||||
feedback.toggleNotification();
|
||||
} else if ((minutes - 60) % 60 >= $feedback.visualized) {
|
||||
} else if (((minutes - 60) / 10) % 60 >= $feedback.visualized) {
|
||||
feedback.toggleNotification();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user