From 9c2a949f0883bdeec795521fb3634806fa4b013d Mon Sep 17 00:00:00 2001 From: Gautier Pelloux-Prayer Date: Wed, 26 Aug 2015 15:44:45 +0200 Subject: [PATCH] remote push notif: fix badge count display which was broken when used NewsStand as a test purpose.. --- Classes/LinphoneAppDelegate.m | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Classes/LinphoneAppDelegate.m b/Classes/LinphoneAppDelegate.m index fe20e12c3..947f6c4fc 100644 --- a/Classes/LinphoneAppDelegate.m +++ b/Classes/LinphoneAppDelegate.m @@ -179,9 +179,8 @@ } } else { if (!instance.isTesting) { - NSUInteger notifTypes = UIRemoteNotificationTypeAlert | UIRemoteNotificationTypeSound | - UIRemoteNotificationTypeBadge | - UIRemoteNotificationTypeNewsstandContentAvailability; + NSUInteger notifTypes = + UIRemoteNotificationTypeAlert | UIRemoteNotificationTypeSound | UIRemoteNotificationTypeBadge; [app registerForRemoteNotificationTypes:notifTypes]; } }