don't wait for 5s before firing a message notification

This commit is contained in:
ryanzhao 2021-09-30 14:31:14 +10:00
parent b7c6eafa87
commit c33630c1d1
1 changed files with 1 additions and 10 deletions

View File

@ -108,15 +108,6 @@ extension UserNotificationPresenterAdaptee: NotificationPresenterAdaptee {
cancelNotification(identifier: notificationIdentifier)
}
let trigger: UNNotificationTrigger?
let checkForCancel = category == .incomingMessage
if checkForCancel {
assert(userInfo[AppNotificationUserInfoKey.threadId] != nil)
trigger = UNTimeIntervalNotificationTrigger(timeInterval: kNotificationDelayForRemoteRead, repeats: false)
} else {
trigger = nil
}
if shouldPresentNotification(category: category, userInfo: userInfo) {
if let displayableTitle = title?.filterForDisplay {
content.title = displayableTitle
@ -129,7 +120,7 @@ extension UserNotificationPresenterAdaptee: NotificationPresenterAdaptee {
Logger.debug("supressing notification body")
}
let request = UNNotificationRequest(identifier: notificationIdentifier, content: content, trigger: trigger)
let request = UNNotificationRequest(identifier: notificationIdentifier, content: content, trigger: nil)
Logger.debug("presenting notification with identifier: \(notificationIdentifier)")
notificationCenter.add(request)