forked from Mirrors/elk
Compare commits
1 commit
main
...
show-follo
Author | SHA1 | Date | |
---|---|---|---|
|
7d987cd49d |
1 changed files with 14 additions and 0 deletions
|
@ -14,6 +14,20 @@ if (account) {
|
|||
useHydratedHead({
|
||||
title: () => `${t('account.following')} | ${getDisplayName(account)} (@${account.acct})`,
|
||||
})
|
||||
|
||||
const currentUserInstance = currentUser.value?.account.url.split('/@')[0]
|
||||
const accountInstance = account.url.split('/@')[0]
|
||||
|
||||
if (currentUserInstance !== accountInstance) {
|
||||
const otherMasto = createMasto()
|
||||
otherMasto.setParams({ url: accountInstance })
|
||||
|
||||
const otherAccount = await otherMasto.client.value.v1.accounts.lookup({ acct: account.acct })
|
||||
|
||||
const otherPaginator = otherMasto.client.value.v1.accounts.listFollowing(otherAccount.id, {})
|
||||
|
||||
console.log((await otherPaginator.next()).value)
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
|
|
Loading…
Reference in a new issue