Await the promise

This commit is contained in:
RMidhunSuresh 2022-08-14 17:52:19 +05:30
parent d1c7a792b8
commit 4a62cdb8fb

View file

@ -77,6 +77,9 @@ export class GapTile extends SimpleTile {
// Don't increase depth because this gap fill was a noop // Don't increase depth because this gap fill was a noop
continue; continue;
} }
else {
canFillMore = false;
}
} }
depth = depth + 1; depth = depth + 1;
} while (depth < 10 && !this._siblingChanged && canFillMore && !this.isDisposed); } while (depth < 10 && !this._siblingChanged && canFillMore && !this.isDisposed);
@ -113,7 +116,7 @@ export class GapTile extends SimpleTile {
} }
async _waitForReconnection() { async _waitForReconnection() {
this.options.client.reconnector.connectionStatus.waitFor(status => status === ConnectionStatus.Online).promise; await this.options.client.reconnector.connectionStatus.waitFor(status => status === ConnectionStatus.Online).promise;
} }
get shape() { get shape() {