Parse follow set descriptions as-is.

This commit is contained in:
KotlinGeekDev
2025-09-11 14:01:12 +01:00
parent 70c0668962
commit 3c4865c4b0

View File

@@ -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) }