Bugfix: setTimeout -> setInterval
This commit is contained in:
parent
9b287336d0
commit
f1db2ccbea
@ -7,7 +7,7 @@ class Routes {
|
|||||||
|
|
||||||
constructor() {
|
constructor() {
|
||||||
this.createCache();
|
this.createCache();
|
||||||
setTimeout(this.createCache.bind(this), 600000);
|
setInterval(this.createCache.bind(this), 600000);
|
||||||
}
|
}
|
||||||
|
|
||||||
private async createCache() {
|
private async createCache() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user