From 420a7077317528f5f7aa692369d5af6b52e9711e Mon Sep 17 00:00:00 2001 From: Benjamin Reis Date: Thu, 24 Nov 2016 14:13:58 +0100 Subject: [PATCH] Repair notification display --- Classes/LinphoneAppDelegate.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Classes/LinphoneAppDelegate.m b/Classes/LinphoneAppDelegate.m index ffc5da233..3c2499a5d 100644 --- a/Classes/LinphoneAppDelegate.m +++ b/Classes/LinphoneAppDelegate.m @@ -659,7 +659,7 @@ didInvalidatePushTokenForType:(NSString *)type { #pragma mark - UserNotifications Framework - (void) userNotificationCenter:(UNUserNotificationCenter *)center willPresentNotification:(UNNotification *)notification withCompletionHandler:(void (^)(UNNotificationPresentationOptions))completionHandler { - completionHandler(UNNotificationPresentationOptionAlert | UNNotificationPresentationOptionSound); + completionHandler(UNNotificationPresentationOptionAlert | UNNotificationPresentationOptionAlert); }