fix checking for updates every 10m

This commit is contained in:
Send_Nukez 2021-11-17 23:25:05 +01:00
parent a6c1a89e5c
commit f45f570730
2 changed files with 3 additions and 1 deletions

View file

@ -0,0 +1,2 @@
Fixed:
- Checking for update every 10 Minutes not working

View file

@ -846,7 +846,7 @@ waitForElement([".main-topBar-container"], ([topBarContainer]) => {
.catch(console.error);
}
setInterval(checkForUpdate(), 10 * 60 * 1000);
setInterval(checkForUpdate, 10 * 60 * 1000);
checkForUpdate();
});