Bugfix: setTimeout -> setInterval

This commit is contained in:
Simon Lindh 2019-08-19 10:31:14 +03:00
parent 9b287336d0
commit f1db2ccbea

View File

@ -7,7 +7,7 @@ class Routes {
constructor() {
this.createCache();
setTimeout(this.createCache.bind(this), 600000);
setInterval(this.createCache.bind(this), 600000);
}
private async createCache() {