From 9cdf6bfa04969fd41bcb2d8cbd6e7f565cef55f7 Mon Sep 17 00:00:00 2001 From: Tobias Fella Date: Tue, 14 Sep 2021 23:24:41 +0200 Subject: [PATCH] Fix displayname in reply component --- imports/NeoChat/Component/Timeline/ReplyComponent.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imports/NeoChat/Component/Timeline/ReplyComponent.qml b/imports/NeoChat/Component/Timeline/ReplyComponent.qml index efe4f16a2..70c60eb7e 100644 --- a/imports/NeoChat/Component/Timeline/ReplyComponent.qml +++ b/imports/NeoChat/Component/Timeline/ReplyComponent.qml @@ -52,7 +52,7 @@ MouseArea { right: parent.right rightMargin: Kirigami.Units.smallSpacing } - text: reply.author.displayName + text: currentRoom.htmlSafeMemberName(reply.author.id) color: reply.author.color elide: Text.ElideRight }