Fix display name in verification message

Previously this would be undefined and i18n doesn't handle this very
well
This commit is contained in:
Carl Schwan
2024-09-21 14:37:19 +02:00
parent 9d6b940b78
commit fad4e506bc

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