fix: include own notes in following feed

This commit is contained in:
codytseng
2025-08-22 21:25:04 +08:00
parent 71d4420604
commit f3f72e2f28

View File

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