Update check frequency

This commit is contained in:
Eric van der Vlist 2023-03-10 22:26:24 +01:00
parent 3aa96c7afc
commit 9e08a70002
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ const Updater: Component<Props> = (props) => {
setUpdateNeeded(latestRelease !== currentRelease); setUpdateNeeded(latestRelease !== currentRelease);
}; };
const intervalId = setInterval(checkUpdate, 60 * 60 * 1000); const intervalId = setInterval(checkUpdate, 10 * 60 * 1000);
checkUpdate(); checkUpdate();