From 25d656250084f458e2d6649fcf86c55593277122 Mon Sep 17 00:00:00 2001 From: Vitor Pamplona Date: Fri, 24 Oct 2025 18:08:39 -0400 Subject: [PATCH] Solving lack of stream name --- .../amethyst/model/nip53LiveActivities/LiveActivitiesChannel.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/model/nip53LiveActivities/LiveActivitiesChannel.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/model/nip53LiveActivities/LiveActivitiesChannel.kt index 312fd1e45..d595164c2 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/model/nip53LiveActivities/LiveActivitiesChannel.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/model/nip53LiveActivities/LiveActivitiesChannel.kt @@ -59,7 +59,7 @@ class LiveActivitiesChannel( super.updateChannelInfo() } - override fun toBestDisplayName(): String = info?.title() ?: toNAddr().toShortDisplay() + override fun toBestDisplayName(): String = info?.title() ?: creatorName() ?: toNAddr().toShortDisplay() fun creatorName(): String? = creator?.toBestDisplayName()