Show sender display name in notifications

This commit is contained in:
Niels Andriesse 2019-08-22 12:14:57 +10:00
parent 9b613eba90
commit 0918015a65
1 changed files with 1 additions and 1 deletions

View File

@ -359,7 +359,7 @@ public class NotificationPresenter: NSObject, NotificationsProtocol {
// for more details.
let messageText = DisplayableText.filterNotificationText(rawMessageText)
let senderName = contactsManager.displayName(forPhoneIdentifier: incomingMessage.authorId)
let senderName = OWSUserProfile.fetch(uniqueId: incomingMessage.authorId, transaction: transaction)?.profileName ?? contactsManager.displayName(forPhoneIdentifier: incomingMessage.authorId)
let notificationTitle: String?
switch previewType {