fix: default to local timeline when logged out (#855)

This commit is contained in:
Daniel Roe 2023-01-07 13:35:42 -08:00 committed by GitHub
parent b5e14810af
commit 697a88ac3d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -6,7 +6,7 @@ export default defineNuxtRouteMiddleware((to) => {
onMastoInit(() => {
if (!currentUser.value)
return navigateTo(`/${currentServer.value}/public`)
return navigateTo(`/${currentServer.value}/public/local`)
if (to.path === '/')
return navigateTo('/home')
})