No need for this, the followList.match already does it

This commit is contained in:
Vitor Pamplona
2026-04-08 14:29:35 -04:00
parent 56a0ec26c6
commit 189dd35ff6
@@ -62,7 +62,6 @@ class FilterByListParams(
if (followLists == null) return false
return when (followLists) {
is GlobalTopNavFilter -> true
is RelayTopNavFilter -> comingFrom.contains(followLists.relayUrl)
else -> followLists.match(noteEvent)
}
@@ -75,7 +74,6 @@ class FilterByListParams(
if (followLists == null) return false
return when (followLists) {
is GlobalTopNavFilter -> true
is RelayTopNavFilter -> comingFrom.contains(followLists.relayUrl)
else -> followLists.matchAuthor(address.pubKeyHex)
}