Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Won't Fix
-
3.5.0
-
None
Description
This old issue isn't resolved correctly https://issues.apache.org/jira/browse/CB-1977.
- Xcode generated project implement the method:
- (void) application:(UIApplication*)application
didReceiveLocalNotification:(UILocalNotification*)notification
{
// re-post ( broadcast )
[[NSNotificationCenter defaultCenter] postNotificationName:CDVLocalNotification object:notification];
}
- And the correct implementation is:
- (void) application:(UIApplication*)application
didReceiveLocalNotification:(UILocalNotification*)notification
{
// re-post ( broadcast )
[[NSNotificationCenter defaultCenter] postNotificationName:CDVLocalNotification object:notification userInfo:notification.userInfo];
}