this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix familiarFollowers call not working

+5 -3
+5 -3
src/components/account-info.jsx
··· 223 223 // On first load, fetch familiar followers, merge to top of results' `value` 224 224 // Remove dups on every fetch 225 225 if (firstLoad) { 226 - const familiarFollowers = await masto.v1.accounts 227 - .familiarFollowers(id) 228 - .fetch(); 226 + const familiarFollowers = await masto.v1.accounts.familiarFollowers.fetch( 227 + { 228 + id: [id], 229 + }, 230 + ); 229 231 familiarFollowersCache.current = familiarFollowers[0].accounts; 230 232 newValue = [ 231 233 ...familiarFollowersCache.current,