From 3eda1e2267c4e08de2990e272ef78d0dbc5eb56a Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Thu, 19 Oct 2023 01:13:12 +0800 Subject: [PATCH] Fix familiarFollowers call not working --- src/components/account-info.jsx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/components/account-info.jsx b/src/components/account-info.jsx index b97e9762..3e8bd862 100644 --- a/src/components/account-info.jsx +++ b/src/components/account-info.jsx @@ -223,9 +223,11 @@ function AccountInfo({ // On first load, fetch familiar followers, merge to top of results' `value` // Remove dups on every fetch if (firstLoad) { - const familiarFollowers = await masto.v1.accounts - .familiarFollowers(id) - .fetch(); + const familiarFollowers = await masto.v1.accounts.familiarFollowers.fetch( + { + id: [id], + }, + ); familiarFollowersCache.current = familiarFollowers[0].accounts; newValue = [ ...familiarFollowersCache.current,