Skip to content

Commit ae347a5

Browse files
rubysyyx990803
authored andcommitted
fix: ensure nextTick are passed to errorHandler (#6730)
1 parent 6ad44e1 commit ae347a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/util/env.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ export const nextTick = (function () {
8989
/* istanbul ignore if */ // $flow-disable-line
9090
if (typeof Promise !== 'undefined' && isNative(Promise)) {
9191
var p = Promise.resolve()
92-
var logError = err => { console.error(err) }
92+
var logError = err => { handleError(err, null, 'nextTick') }
9393
timerFunc = () => {
9494
p.then(nextTickHandler).catch(logError)
9595
// in problematic UIWebViews, Promise.then doesn't completely break, but

0 commit comments

Comments
 (0)