Fix roaming renderings, fix layout generation

This commit is contained in:
Pieter Vander Vennet 2020-11-17 17:36:56 +01:00
parent 2177db376c
commit 41582ec6a2
4 changed files with 4 additions and 4 deletions

View file

@ -133,10 +133,10 @@ export class UpdateFromOverpass {
this.ForceRefresh();
console.log(`QUERY FAILED (retrying in ${5 * this.retries.data} sec)`, reason);
this.retries.ping();
this.runningQuery.setData(false)
const self = this;
window?.setTimeout(
function () {
self.runningQuery.setData(false)
self.update(state)
}, this.retries.data * 5000
)