Fixes following by geotags

pull/812/head
Vitor Pamplona 2024-03-20 11:34:40 -04:00
rodzic d15beb2ae5
commit 1072b7a5c5
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -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)
}
}