We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 80c067b + ed40fab commit 8c635cdCopy full SHA for 8c635cd
src/ios/AppDelegate+IonicDeeplink.m
@@ -56,6 +56,10 @@ - (BOOL)application:(UIApplication *)application continueUserActivity:(NSUserAct
56
57
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo {
58
// Pass the push notification to the plugin
59
+ if([userInfo objectForKey:@"uri"] == nil) {
60
+ return;
61
+ }
62
+
63
if(application.applicationState == UIApplicationStateInactive || application.applicationState == UIApplicationStateBackground) {
64
IonicDeeplinkPlugin *plugin = [self.viewController getCommandInstance:PLUGIN_NAME];
65
0 commit comments