mirror of
https://github.com/danbulant/dribbblish-dynamic-theme
synced 2026-05-24 12:35:05 +00:00
fix checking for updates every 10m
This commit is contained in:
parent
a6c1a89e5c
commit
f45f570730
2 changed files with 3 additions and 1 deletions
|
|
@ -0,0 +1,2 @@
|
|||
Fixed:
|
||||
- Checking for update every 10 Minutes not working
|
||||
|
|
@ -846,7 +846,7 @@ waitForElement([".main-topBar-container"], ([topBarContainer]) => {
|
|||
.catch(console.error);
|
||||
}
|
||||
|
||||
setInterval(checkForUpdate(), 10 * 60 * 1000);
|
||||
setInterval(checkForUpdate, 10 * 60 * 1000);
|
||||
checkForUpdate();
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue