fix: Status notification shows "mentioned you" text
This commit is contained in:
parent
91bb3f3627
commit
ad7904e863
|
@ -15,6 +15,8 @@ extension String {
|
||||||
mutating func capitalizeFirstLetter() {
|
mutating func capitalizeFirstLetter() {
|
||||||
self = self.capitalizingFirstLetter()
|
self = self.capitalizingFirstLetter()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static let empty = ""
|
||||||
}
|
}
|
||||||
|
|
||||||
extension String {
|
extension String {
|
||||||
|
|
|
@ -154,7 +154,7 @@ extension NotificationView {
|
||||||
)
|
)
|
||||||
case .status:
|
case .status:
|
||||||
self.viewModel.notificationIndicatorText = createMetaContent(
|
self.viewModel.notificationIndicatorText = createMetaContent(
|
||||||
text: L10n.Scene.Notification.NotificationDescription.mentionedYou,
|
text: .empty,
|
||||||
emojis: emojis.asDictionary
|
emojis: emojis.asDictionary
|
||||||
)
|
)
|
||||||
case ._other:
|
case ._other:
|
||||||
|
|
Loading…
Reference in New Issue