Fixes the LazyColumn for Hashtags on Profile

This commit is contained in:
Vitor Pamplona
2024-06-07 19:28:20 -04:00
parent b182d409b6
commit 723e575b4b
2 changed files with 25 additions and 20 deletions
@@ -82,6 +82,8 @@ class ContactListEvent(
fun unverifiedFollowTagSet() = tags.filter { it.size > 1 && it[0] == "t" }.mapNotNull { it.getOrNull(1) }
fun countFollowTags() = tags.count { it.size > 1 && it[0] == "t" }
fun unverifiedFollowGeohashSet() = tags.filter { it.size > 1 && it[0] == "g" }.mapNotNull { it.getOrNull(1) }
fun unverifiedFollowAddressSet() = tags.filter { it.size > 1 && it[0] == "a" }.mapNotNull { it.getOrNull(1) }