fix: Status notification shows "mentioned you" text

This commit is contained in:
Marcus Kida 2022-11-18 10:54:40 +01:00
parent 91bb3f3627
commit ad7904e863
No known key found for this signature in database
GPG Key ID: 19FF64E08013CA40
2 changed files with 3 additions and 1 deletions

View File

@ -15,6 +15,8 @@ extension String {
mutating func capitalizeFirstLetter() {
self = self.capitalizingFirstLetter()
}
static let empty = ""
}
extension String {

View File

@ -154,7 +154,7 @@ extension NotificationView {
)
case .status:
self.viewModel.notificationIndicatorText = createMetaContent(
text: L10n.Scene.Notification.NotificationDescription.mentionedYou,
text: .empty,
emojis: emojis.asDictionary
)
case ._other: