From 960389166dfaf11a58953417c374970974fe5657 Mon Sep 17 00:00:00 2001 From: William Casarin Date: Fri, 18 Nov 2022 12:19:43 -0800 Subject: [PATCH] home: always add home events Don't try to hide anything. It's confusing, and we have the post-only view now so it's fine --- damus/Models/HomeModel.swift | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/damus/Models/HomeModel.swift b/damus/Models/HomeModel.swift index e98826bf..e7e18b88 100644 --- a/damus/Models/HomeModel.swift +++ b/damus/Models/HomeModel.swift @@ -370,9 +370,7 @@ class HomeModel: ObservableObject { } if sub_id == home_subid { - if is_friend_event(ev, keypair: damus_state.keypair, contacts: damus_state.contacts) { - let _ = insert_home_event(ev) - } + let _ = insert_home_event(ev) } else if sub_id == notifications_subid { handle_notification(ev: ev) }