fix: reuse existing relationship ref
parent
84cdea945f
commit
09e071f6bf
|
@ -105,9 +105,7 @@ export function useRelationship(account: Account): Ref<Relationship | undefined>
|
||||||
}
|
}
|
||||||
|
|
||||||
async function fetchRelationships() {
|
async function fetchRelationships() {
|
||||||
const requested = Array.from(requestedRelationships.entries())
|
const requested = Array.from(requestedRelationships.entries()).filter(([, r]) => !r.value)
|
||||||
requestedRelationships.clear()
|
|
||||||
|
|
||||||
const relationships = await useMasto().accounts.fetchRelationships(requested.map(([id]) => id))
|
const relationships = await useMasto().accounts.fetchRelationships(requested.map(([id]) => id))
|
||||||
for (let i = 0; i < requested.length; i++)
|
for (let i = 0; i < requested.length; i++)
|
||||||
requested[i][1].value = relationships[i]
|
requested[i][1].value = relationships[i]
|
||||||
|
|
Loading…
Reference in New Issue