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
|
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
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user