forked from Mirrors/elk
fix: only short circuit on account pages
This commit is contained in:
parent
5bd081df49
commit
25b0ad2f19
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ export default defineNuxtRouteMiddleware(async (to, from) => {
|
||||||
|
|
||||||
try {
|
try {
|
||||||
// If we're already on an account page, we can search for this on the new instance
|
// If we're already on an account page, we can search for this on the new instance
|
||||||
if (to.params.account && to.params.account.includes('@')) {
|
if (to.params.account && to.name !== 'status' && to.params.account.includes('@')) {
|
||||||
const account = await fetchAccountByHandle(to.params.account as string)
|
const account = await fetchAccountByHandle(to.params.account as string)
|
||||||
if (account)
|
if (account)
|
||||||
return getAccountRoute(account)
|
return getAccountRoute(account)
|
||||||
|
|
Loading…
Reference in a new issue