diff --git a/src/display/api.js b/src/display/api.js index 397cbb048..6e71f8cc7 100644 --- a/src/display/api.js +++ b/src/display/api.js @@ -2457,7 +2457,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); } },