Solving lack of stream name

This commit is contained in:
Vitor Pamplona
2025-10-24 18:08:39 -04:00
parent 67e3b05a42
commit 25d6562500

View File

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