Mass Block [bsky] Reposts [and more]
0
fork

Configure Feed

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

chore: comment Set->Array spread in fetchEngagementData

Winter 688a92ec 80c30ea9

+3 -3
+3 -3
index.js
··· 477 477 if (mode === "profile") { 478 478 // target is a DID 479 479 if (categories.has("followers")) { 480 - fetchers.push(fetchFollowers(target).then((d) => { results.followers = [...d]; })); 480 + fetchers.push(fetchFollowers(target).then((d) => { results.followers = [...d]; /* Set->Array */ })); 481 481 } 482 482 if (categories.has("following")) { 483 483 fetchers.push( 484 484 resolvePds(target).then((pdsUrl) => 485 - fetchFollowing(target, pdsUrl).then((d) => { results.following = [...d]; }) 485 + fetchFollowing(target, pdsUrl).then((d) => { results.following = [...d]; /* Set->Array */ }) 486 486 ) 487 487 ); 488 488 } ··· 499 499 } 500 500 if (categories.has("followers")) { 501 501 const authorDid = extractAuthorDid(target); 502 - fetchers.push(fetchFollowers(authorDid).then((d) => { results.followers = [...d]; })); 502 + fetchers.push(fetchFollowers(authorDid).then((d) => { results.followers = [...d]; /* Set->Array */ })); 503 503 } 504 504 fetchers.push(fetchQuotePosters(target).then((d) => { results.quotePosters = d; })); 505 505 }