mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-04 16:09:59 +00:00
fix: add domain when querying for user on GoToSocial (#2221)
This commit is contained in:
parent
895c1ecd8d
commit
a6e4da8c41
1 changed files with 2 additions and 2 deletions
|
@ -69,10 +69,10 @@ export async function fetchAccountByHandle(acct: string): Promise<mastodon.v1.Ac
|
|||
async function lookupAccount() {
|
||||
const client = useMastoClient()
|
||||
let account: mastodon.v1.Account
|
||||
if (!isGotoSocial.value)
|
||||
if (!isGotoSocial.value) // TODO: GoToSocial will support this endpoint from 0.10.0
|
||||
account = await client.v1.accounts.lookup({ acct: userAcct })
|
||||
else
|
||||
account = (await client.v1.search({ q: `@${userAcct}`, type: 'accounts' })).accounts[0]
|
||||
account = (await client.v1.search({ q: `@${userAcct}@${domain}`, type: 'accounts' })).accounts[0]
|
||||
|
||||
if (account.acct && !account.acct.includes('@') && domain)
|
||||
account.acct = `${account.acct}@${domain}`
|
||||
|
|
Loading…
Reference in a new issue