From 94fd06cd9c3f6a23706e512871af5ecbc12787b1 Mon Sep 17 00:00:00 2001 From: kumaresan-cgvak Date: Mon, 20 Jul 2015 15:53:29 +0530 Subject: [PATCH] Badge Count Issue - When App becomes active - resolved Removed the default Badge reset code, when the app "applicationDidBecomeActive" active method is called. --- src/ios/AppDelegate+notification.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ios/AppDelegate+notification.m b/src/ios/AppDelegate+notification.m index aa563a34..2c916b59 100644 --- a/src/ios/AppDelegate+notification.m +++ b/src/ios/AppDelegate+notification.m @@ -87,7 +87,7 @@ - (void)applicationDidBecomeActive:(UIApplication *)application { NSLog(@"active"); //zero badge - application.applicationIconBadgeNumber = 0; + //application.applicationIconBadgeNumber = 0; if (self.launchNotification) { PushPlugin *pushHandler = [self getCommandInstance:@"PushPlugin"];