From 3c4865c4b0074a29cc008182c8b9d90eb8edca73 Mon Sep 17 00:00:00 2001 From: KotlinGeekDev Date: Thu, 11 Sep 2025 14:01:12 +0100 Subject: [PATCH] Parse follow set descriptions as-is. --- .../amethyst/ui/screen/loggedIn/lists/FollowSet.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/lists/FollowSet.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/lists/FollowSet.kt index 16fa992f3..2b29bff40 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/lists/FollowSet.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/lists/FollowSet.kt @@ -42,7 +42,7 @@ data class FollowSet( val address = event.address() val dTag = event.dTag() val listTitle = event.nameOrTitle() ?: dTag - val listDescription = event.description() ?: "" + val listDescription = event.description() val publicFollows = event.publicPeople().map { it.toTagArray() }.map { it.value() } val privateFollows = runBlocking { event.privatePeople(signer) }