Skip to content

Commit 2f3020e

Browse files
shasharomanyyx990803
authored andcommitted
fix(#9511): avoid promise catch multiple times (#9526)
* fix(#9511): avoid promise catch multiple times * fix(#9511): add a test case for util/error/invokeWithErrorHandling * fix(#9511): update test case for util/error/invokeWithErrorHandling
1 parent 8a80a23 commit 2f3020e

File tree

2 files changed

+26
-1
lines changed

2 files changed

+26
-1
lines changed

src/core/util/error.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,9 @@ export function invokeWithErrorHandling (
4444
try {
4545
res = args ? handler.apply(context, args) : handler.call(context)
4646
if (res && !res._isVue && isPromise(res)) {
47-
res.catch(e => handleError(e, vm, info + ` (Promise/async)`))
47+
// issue #9511
48+
// reassign to res to avoid catch triggering multiple times when nested calls
49+
res = res.catch(e => handleError(e, vm, info + ` (Promise/async)`))
4850
}
4951
} catch (e) {
5052
handleError(e, vm, info)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
import Vue from 'vue'
2+
import { invokeWithErrorHandling } from 'core/util/error'
3+
4+
describe('invokeWithErrorHandling', () => {
5+
if (typeof Promise !== 'undefined') {
6+
it('should errorHandler call once when nested calls return rejected promise', done => {
7+
let times = 0
8+
9+
Vue.config.errorHandler = function () {
10+
times++
11+
}
12+
13+
invokeWithErrorHandling(() => {
14+
return invokeWithErrorHandling(() => {
15+
return Promise.reject(new Error('fake error'))
16+
})
17+
}).then(() => {
18+
expect(times).toBe(1)
19+
done()
20+
})
21+
})
22+
}
23+
})

0 commit comments

Comments
 (0)