fix: The conversation page cannot be opened after three parties enter and refresh (#3608)

This commit is contained in:
shaohuzhang1 2025-07-15 16:39:04 +08:00 committed by GitHub
parent 48c59b59a8
commit d0eb28d5fa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -75,11 +75,12 @@ router.beforeEach(
return return
} }
if (p_token) { if (p_token) {
next({ ...to, query: to.query }) const q = to.query
delete q.token
next({ ...to, query: q })
} else { } else {
next() next()
} }
return return
} }
} }