Fix display name in verification message

Previously this would be undefined and i18n doesn't handle this very
well


(cherry picked from commit fad4e506bc)

Co-authored-by: Carl Schwan <carl@carlschwan.eu>
This commit is contained in:
Carl Schwan
2024-09-21 13:27:00 +00:00
parent bf18fcbbba
commit af6187706e

View File

@@ -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)
}
}