prevent self-send message PN

pull/524/head
ryanzhao 4 years ago
parent 99d2dd42d5
commit 9690ce1a9e

@ -112,7 +112,10 @@ public final class NotificationServiceExtension : UNNotificationServiceExtension
}
self.handleSuccess(for: notificationContent)
} catch {
self.handleFailure(for: notificationContent)
if let error = error as? MessageReceiver.Error, error.isRetryable {
self.handleFailure(for: notificationContent)
}
self.completeSilenty()
}
}
}

Loading…
Cancel
Save