mirror of
https://github.com/oxen-io/session-ios.git
synced 2023-12-13 21:30:14 +01:00
don't wait for 5s before firing a message notification
This commit is contained in:
parent
b7c6eafa87
commit
c33630c1d1
1 changed files with 1 additions and 10 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue