Browse Source

fix: include own notes in following feed

imwald
codytseng 7 months ago
parent
commit
f3f72e2f28
  1. 2
      src/pages/primary/NoteListPage/FollowingFeed.tsx

2
src/pages/primary/NoteListPage/FollowingFeed.tsx

@ -18,7 +18,7 @@ export default function FollowingFeed() {
} }
const followings = await client.fetchFollowings(pubkey) const followings = await client.fetchFollowings(pubkey)
setSubRequests(await client.generateSubRequestsForPubkeys(followings, pubkey)) setSubRequests(await client.generateSubRequestsForPubkeys([pubkey, ...followings], pubkey))
} }
init() init()

Loading…
Cancel
Save