Merge pull request #3785 from danieldaquino/daniel-ios-2339-users-sometimes-cannot-see-their-own-posts
Fix issue where users sometimes cannot see their own posts
This commit is contained in:
@@ -98,10 +98,11 @@ class Contacts {
|
|||||||
return Array((pubkey_to_our_friends[pubkey] ?? Set()))
|
return Array((pubkey_to_our_friends[pubkey] ?? Set()))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Filters timeline events to authors the user follows, while still allowing the user's own events through.
|
||||||
var friend_filter: (NostrEvent) -> Bool {
|
var friend_filter: (NostrEvent) -> Bool {
|
||||||
{ [weak self] ev in
|
{ [weak self] ev in
|
||||||
guard let self else { return false }
|
guard let self else { return false }
|
||||||
return self.is_friend(ev.pubkey)
|
return self.is_friend_or_self(ev.pubkey)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user