From 782b71c826782f2c50c2f99449e9933391e795c5 Mon Sep 17 00:00:00 2001 From: Tobias Fella Date: Thu, 10 Nov 2022 14:02:47 +0100 Subject: [PATCH] Use plaintext in reaction delegate --- src/qml/Component/Timeline/ReactionDelegate.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qml/Component/Timeline/ReactionDelegate.qml b/src/qml/Component/Timeline/ReactionDelegate.qml index ad6b22777..ffcf92b49 100644 --- a/src/qml/Component/Timeline/ReactionDelegate.qml +++ b/src/qml/Component/Timeline/ReactionDelegate.qml @@ -53,7 +53,7 @@ Flow { text += i18nc("Separate the usernames of users", " and ") } } - text += modelData.authors[i].displayName + text += currentRoom.htmlSafeMemberName(modelData.authors[i].id) } if (modelData.authors.length > 3) { text += i18ncp("%1 is the number of other users", " and %1 other", " and %1 others", modelData.authors.length - 3)