fix: fetch the first page of data

This commit is contained in:
三咲智子 Kevin Deng 2023-01-13 00:21:27 +08:00
parent 4139be32f9
commit cd490fffec
No known key found for this signature in database
GPG key ID: 69992F2250DFD93E
2 changed files with 5 additions and 11 deletions

View file

@ -53,9 +53,7 @@ export default defineNuxtRouteMiddleware(async (to, from) => {
await masto.loginTo(currentUser.value)
// If we're logged in, search for the local id the account or status corresponds to
const { value } = await masto.v2.search({ q: `https:/${to.fullPath}`, resolve: true, limit: 1 }).next()
const { accounts, statuses } = value
const { accounts, statuses } = await masto.v2.search({ q: `https:/${to.fullPath}`, resolve: true, limit: 1 })
if (statuses[0])
return getStatusRoute(statuses[0])