From 33e9c80c1be3d1709c2a84c1d935b9ac92de92e8 Mon Sep 17 00:00:00 2001 From: Nicolas Werner Date: Wed, 18 Jan 2023 19:20:32 +0100 Subject: [PATCH] Fix html in sidebar again --- resources/qml/RoomList.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/qml/RoomList.qml b/resources/qml/RoomList.qml index a1abed00..40ecdd34 100644 --- a/resources/qml/RoomList.qml +++ b/resources/qml/RoomList.qml @@ -418,7 +418,7 @@ Page { color: roomItem.unimportantText font.pixelSize: fontMetrics.font.pixelSize * 0.9 elideWidth: width - fullText: lastMessage + fullText: TimelineManager.htmlEscape(lastMessage) textFormat: Text.RichText Layout.fillWidth: true }