this repo has no description
0
fork

Configure Feed

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

Don't call familiar_followers if not same instance as logged-in instance

+6
+6
src/components/account-info.jsx
··· 73 73 [account?.id], 74 74 ); 75 75 76 + const sameCurrentInstance = useMemo( 77 + () => instance === api().instance, 78 + [instance], 79 + ); 80 + 76 81 useEffect(() => { 77 82 if (!isString) { 78 83 setInfo(account); ··· 141 146 } 142 147 const results = await followersIterator.current.next(); 143 148 if (isSelf) return results; 149 + if (!sameCurrentInstance) return results; 144 150 145 151 const { value } = results; 146 152 let newValue = [];