diff --git a/damus/Views/Notifications/NotificationsView.swift b/damus/Views/Notifications/NotificationsView.swift index 151c8d05..848ab3f3 100644 --- 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) } } }