1 files changed, 1 insertions, 1 deletions
diff --git a/resources/qml/TimelineView.qml b/resources/qml/TimelineView.qml
index 70347009..c06b47c2 100644
--- a/resources/qml/TimelineView.qml
+++ b/resources/qml/TimelineView.qml
@@ -252,7 +252,7 @@ Item {
Layout.rightMargin: Nheko.paddingLarge
TextArea {
- text: TimelineManager.escapeEmoji(preview.roomTopic)
+ text: preview.roomName != "" ? TimelineManager.escapeEmoji(preview.roomTopic) : qsTr("This room is possibly inaccessible. If this room is private, you should remove it from the child list of this space.")
wrapMode: TextEdit.WordWrap
textFormat: TextEdit.RichText
readOnly: true
|