Switch to nameOrTitle() for follow set titles.

This commit is contained in:
KotlinGeekDev
2025-03-18 13:49:35 +01:00
parent 3e0f8a81b4
commit dde59d4741
@@ -37,7 +37,7 @@ class FollowSet(
signer: NostrSigner, signer: NostrSigner,
): FollowSet { ): FollowSet {
val dTag = event.dTag() val dTag = event.dTag()
val listTitle = event.title() ?: dTag val listTitle = event.nameOrTitle() ?: dTag
val listDescription = event.description() ?: "" val listDescription = event.description() ?: ""
val publicFollows = event.filterTagList("p", null) val publicFollows = event.filterTagList("p", null)
val privateFollows = mutableListOf<String>() val privateFollows = mutableListOf<String>()