From f7b1b5bc79563904f58c650db609363a3c8e8be5 Mon Sep 17 00:00:00 2001 From: Chris Bianca Date: Fri, 13 Apr 2018 13:21:09 +0100 Subject: [PATCH] [ios][notifications] Add another missing completionHandler call --- ios/RNFirebase/notifications/RNFirebaseNotifications.m | 1 + 1 file changed, 1 insertion(+) diff --git a/ios/RNFirebase/notifications/RNFirebaseNotifications.m b/ios/RNFirebase/notifications/RNFirebaseNotifications.m index 53d5c563..17e69c95 100644 --- a/ios/RNFirebase/notifications/RNFirebaseNotifications.m +++ b/ios/RNFirebase/notifications/RNFirebaseNotifications.m @@ -120,6 +120,7 @@ RCT_EXPORT_MODULE(); // - foreground notifications also go through willPresentNotification // - background notification presses also go through didReceiveNotificationResponse // This prevents duplicate messages from hitting the JS app + completionHandler(UIBackgroundFetchResultNoData); return; }