diff --git a/src/display/api.js b/src/display/api.js index 4f7259c50..c0b6e9dd0 100644 --- a/src/display/api.js +++ b/src/display/api.js @@ -2453,7 +2453,7 @@ var InternalRenderTask = (function InternalRenderTaskClosure() { if (this.useRequestAnimationFrame && typeof window !== 'undefined') { window.requestAnimationFrame(this._nextBound); } else { - Promise.resolve(undefined).then(this._nextBound); + Promise.resolve().then(this._nextBound).catch(this.callback); } },