We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ad1e318 + 399d373 commit 5e3babfCopy full SHA for 5e3babf
1 file changed
packages/api-proxy/src/platform/api/route/index.ios.js
@@ -14,7 +14,11 @@ function getBasePath (navigation) {
14
let timerId = null
15
function isLock (navigationHelper, type, options) {
16
if (navigationHelper.lastSuccessCallback && navigationHelper.lastFailCallback) {
17
- const res = { errMsg: `${type}:fail the previous routing event didn't complete` }
+ const { path } = parseUrl(options.url)
18
+ const res = {
19
+ errMsg: `${type}:fail the previous routing event didn't complete`,
20
+ path
21
+ }
22
failHandle(res, options.fail, options.complete)
23
return true
24
}
0 commit comments