damus

nostr ios client
git clone git://jb55.com/damus
Log | Files | Refs | README | LICENSE

commit 9d87bc11dd3bf667711f3f91ec2bdf5ca5350cde
parent 85e14de12dbcbb12469872ce5988fdc488af16e7
Author: William Casarin <jb55@jb55.com>
Date:   Fri, 26 Jan 2024 18:11:54 -0800

friendfilter: extend to friend-of-friends

Suggested-by: Semisol

Diffstat:
Mdamus/Models/FriendFilter.swift | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/damus/Models/FriendFilter.swift b/damus/Models/FriendFilter.swift @@ -28,7 +28,7 @@ enum FriendFilter: String, StringCodable { case .all: return true case .friends: - return contacts.is_friend_or_self(pubkey) + return contacts.is_in_friendosphere(pubkey) } } }