From 1072b7a5c581caa8f9da2847a8f86596dc2048ab Mon Sep 17 00:00:00 2001 From: Vitor Pamplona Date: Wed, 20 Mar 2024 11:34:40 -0400 Subject: [PATCH] Fixes following by geotags --- .../com/vitorpamplona/amethyst/ui/dal/FilterByListParams.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/java/com/vitorpamplona/amethyst/ui/dal/FilterByListParams.kt b/app/src/main/java/com/vitorpamplona/amethyst/ui/dal/FilterByListParams.kt index 2ad6edd49..dad30487f 100644 --- a/app/src/main/java/com/vitorpamplona/amethyst/ui/dal/FilterByListParams.kt +++ b/app/src/main/java/com/vitorpamplona/amethyst/ui/dal/FilterByListParams.kt @@ -47,12 +47,12 @@ class FilterByListParams( return if (noteEvent is LiveActivitiesEvent) { noteEvent.participantsIntersect(followLists.users) || noteEvent.isTaggedHashes(followLists.hashtags) || - noteEvent.isTaggedGeoHashes(followLists.users) || + noteEvent.isTaggedGeoHashes(followLists.geotags) || noteEvent.isTaggedAddressableNotes(followLists.communities) } else { noteEvent.pubKey in followLists.users || noteEvent.isTaggedHashes(followLists.hashtags) || - noteEvent.isTaggedGeoHashes(followLists.users) || + noteEvent.isTaggedGeoHashes(followLists.geotags) || noteEvent.isTaggedAddressableNotes(followLists.communities) } }