diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/note/ChatroomHeaderCompose.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/note/ChatroomHeaderCompose.kt index af245f9ec..5952348bc 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/note/ChatroomHeaderCompose.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/note/ChatroomHeaderCompose.kt @@ -187,7 +187,7 @@ private fun ChannelRoomCompose( } else if (noteEvent is ChannelMetadataEvent) { "${stringRes(R.string.channel_information_changed_to)} " } else { - noteEvent?.content() + noteEvent?.content()?.take(200) } val hasNewMessages = remember { mutableStateOf(false) }