From af6187706e1442f2b61dc54d26abe52ec63547b7 Mon Sep 17 00:00:00 2001 From: Carl Schwan Date: Sat, 21 Sep 2024 13:27:00 +0000 Subject: [PATCH] Fix display name in verification message Previously this would be undefined and i18n doesn't handle this very well (cherry picked from commit fad4e506bcf316ad4fb22dde9e5c28dddf0e333d) Co-authored-by: Carl Schwan --- src/timeline/MessageComponentChooser.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/timeline/MessageComponentChooser.qml b/src/timeline/MessageComponentChooser.qml index 6d777e591..354cf5f3c 100644 --- a/src/timeline/MessageComponentChooser.qml +++ b/src/timeline/MessageComponentChooser.qml @@ -217,7 +217,7 @@ DelegateChooser { roleValue: MessageComponentType.Verification delegate: MimeComponent { mimeIconSource: "security-high" - label: i18n("%1 started a user verification", model.author.escapedDisplayName) + label: i18n("%1 started a user verification", model.author.displayName) } }