error handling
This commit is contained in:
parent
9f9ea1d5fb
commit
7928c5d713
@ -129,19 +129,29 @@ class PopupProxy {
|
|||||||
if (this._frameOffsetPromise === null && !expired) { return; }
|
if (this._frameOffsetPromise === null && !expired) { return; }
|
||||||
|
|
||||||
if (this._frameOffsetPromise !== null) {
|
if (this._frameOffsetPromise !== null) {
|
||||||
await this._frameOffsetPromise;
|
if (firstRun) {
|
||||||
|
await this._frameOffsetPromise;
|
||||||
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
this._frameOffsetPromise = this._getFrameOffset();
|
||||||
if (firstRun) {
|
if (firstRun) {
|
||||||
this._frameOffsetPromise = this._getFrameOffset();
|
try {
|
||||||
this._frameOffset = await this._frameOffsetPromise;
|
this._frameOffset = await this._frameOffsetPromise;
|
||||||
|
this._frameOffsetUpdatedAt = Date.now();
|
||||||
|
} catch (e) {
|
||||||
|
console.error(e);
|
||||||
|
}
|
||||||
this._frameOffsetPromise = null;
|
this._frameOffsetPromise = null;
|
||||||
this._frameOffsetUpdatedAt = Date.now();
|
|
||||||
} else {
|
} else {
|
||||||
this._getFrameOffset().then((offset) => {
|
this._frameOffsetPromise.then((offset) => {
|
||||||
this._frameOffset = offset;
|
this._frameOffset = offset;
|
||||||
this._frameOffsetUpdatedAt = Date.now();
|
this._frameOffsetUpdatedAt = Date.now();
|
||||||
|
this._frameOffsetPromise = null;
|
||||||
|
}, (e) => {
|
||||||
|
console.error(e);
|
||||||
|
this._frameOffsetPromise = null;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user