mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 01:33:05 +00:00
fix: The conversation page cannot be opened after three parties enter and refresh (#3608)
This commit is contained in:
parent
48c59b59a8
commit
d0eb28d5fa
|
|
@ -75,11 +75,12 @@ router.beforeEach(
|
|||
return
|
||||
}
|
||||
if (p_token) {
|
||||
next({ ...to, query: to.query })
|
||||
const q = to.query
|
||||
delete q.token
|
||||
next({ ...to, query: q })
|
||||
} else {
|
||||
next()
|
||||
}
|
||||
|
||||
return
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue