Include own posts in following feed

This commit is contained in:
styppo 2023-01-28 02:34:18 +00:00
parent 8a3e4bcf60
commit 6513463cd2
No known key found for this signature in database
GPG Key ID: 3AAA685C50724C28

View File

@ -45,7 +45,7 @@ const myContacts = () => {
const app = useAppStore()
const nostr = useNostrStore()
const contacts = nostr.getContacts(app.myPubkey)
return contacts?.map(contact => contact.pubkey)
return contacts?.map(contact => contact.pubkey).concat(app.myPubkey)
}
const Feeds = {