forked from Mirrors/elk
chore: don't decode target uri
This commit is contained in:
parent
9b0a67e0af
commit
75e2589e1e
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ function handleAuth(to: RouteLocationNormalized) {
|
||||||
if (to.path === '/') {
|
if (to.path === '/') {
|
||||||
// handle PWA protocol handler
|
// handle PWA protocol handler
|
||||||
if (to.query['protocol-handler'] && to.query.target) {
|
if (to.query['protocol-handler'] && to.query.target) {
|
||||||
const target = decodeURIComponent(to.query.target as string).replace(/^web\+ap:\/\//, 'https://')
|
const target = (to.query.target as string).replace(/^web\+ap:\/\//, 'https://')
|
||||||
// eslint-disable-next-line no-console
|
// eslint-disable-next-line no-console
|
||||||
console.log(target)
|
console.log(target)
|
||||||
return navigateTo('/home')
|
return navigateTo('/home')
|
||||||
|
|
Loading…
Reference in a new issue