damus

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

commit 084c86eb0e826266d34f1f3e84a2816db0ee4008
parent 00aa897f05ee645740b100f3ec7fa9742d1afbdd
Author: William Casarin <jb55@jb55.com>
Date:   Sat, 22 Apr 2023 11:15:45 -0700

Only show friends, not friend-of-friend in friend filter

Changelog-Changed: Only show friends, not friend-of-friend in friend filter

Diffstat:
Mdamus/Views/Notifications/NotificationsView.swift | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

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