diff --git a/CHANGELOG.md b/CHANGELOG.md index e69de29..7adef19 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -0,0 +1,2 @@ +Fixed: +- Checking for update every 10 Minutes not working \ No newline at end of file diff --git a/src/js/main.js b/src/js/main.js index ce76d3f..1ef442b 100644 --- a/src/js/main.js +++ b/src/js/main.js @@ -846,7 +846,7 @@ waitForElement([".main-topBar-container"], ([topBarContainer]) => { .catch(console.error); } - setInterval(checkForUpdate(), 10 * 60 * 1000); + setInterval(checkForUpdate, 10 * 60 * 1000); checkForUpdate(); });