Make PWA check every minute instead of hour

This commit is contained in:
thepaperpilot 2022-12-08 07:46:24 -06:00
parent 04525a95bc
commit ef6f9935a5

View file

@ -70,7 +70,7 @@ requestAnimationFrame(async () => {
onRegisterError: console.warn,
onRegistered(r) {
if (r) {
setInterval(r.update, 60 * 60 * 1000);
setInterval(r.update, 60 * 1000);
}
}
});