提交 50d958a2 编写于 作者: 雪洛's avatar 雪洛

fix: custom token error

上级 8e80a804
......@@ -38,6 +38,10 @@ class UniID {
})
}
setInterceptor (timing, handler) {
this.interceptorMap.set(timing, handler)
}
_t (...args) {
return this._i18n.t(...args)
}
......
......@@ -187,7 +187,7 @@ export async function createTokenInternal ({
})
}
const customToken = this.interceptorMap.get('customToken')
if (typeof customToken === 'function') {
if (typeof customToken !== 'function') {
throw new Error('Invalid custom token file')
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册