From dde59d47414a45187d7ba3427e2f3511d76d0820 Mon Sep 17 00:00:00 2001 From: KotlinGeekDev Date: Tue, 18 Mar 2025 13:49:35 +0100 Subject: [PATCH] Switch to nameOrTitle() for follow set titles. --- .../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 fcb2af03e..ae8a12a04 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 @@ -37,7 +37,7 @@ class FollowSet( signer: NostrSigner, ): FollowSet { val dTag = event.dTag() - val listTitle = event.title() ?: dTag + val listTitle = event.nameOrTitle() ?: dTag val listDescription = event.description() ?: "" val publicFollows = event.filterTagList("p", null) val privateFollows = mutableListOf()