From d02b4007c0563d4aa0bd2c1fcd9f1078d1a40c3f Mon Sep 17 00:00:00 2001 From: Tobias Fella Date: Thu, 10 Nov 2022 15:05:30 +0100 Subject: [PATCH] Fix showing old name for rename events --- src/qml/Component/Timeline/StateDelegate.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qml/Component/Timeline/StateDelegate.qml b/src/qml/Component/Timeline/StateDelegate.qml index 240409819..ba16aad8f 100644 --- a/src/qml/Component/Timeline/StateDelegate.qml +++ b/src/qml/Component/Timeline/StateDelegate.qml @@ -98,7 +98,7 @@ Control { Layout.fillWidth: true wrapMode: Text.WordWrap textFormat: Text.RichText - text: `${currentRoom.htmlSafeMemberName(author.id)} ${aggregateDisplay}` + text: `${model.authorDisplayName} ${aggregateDisplay}` onLinkActivated: RoomManager.openResource(link) } }