From 0bd0cdf618cb83941b58d3ed7d500552363e6447 Mon Sep 17 00:00:00 2001 From: Jesse Katsumata Date: Mon, 26 Oct 2020 15:01:56 +0900 Subject: [PATCH] chore: fix uunnotificationpresentationoption constant in example --- example/ios/example/AppDelegate.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/example/ios/example/AppDelegate.m b/example/ios/example/AppDelegate.m index 8bc02486a..6b651abda 100644 --- a/example/ios/example/AppDelegate.m +++ b/example/ios/example/AppDelegate.m @@ -74,8 +74,8 @@ - (void)userNotificationCenter:(UNUserNotificationCenter *)center withCompletionHandler: (void (^)(UNNotificationPresentationOptions options)) completionHandler { - completionHandler(UNAuthorizationOptionSound | UNAuthorizationOptionAlert | - UNAuthorizationOptionBadge); + completionHandler(UNNotificationPresentationOptionSound | UNNotificationPresentationOptionBadge | + UNNotificationPresentationOptionAlert); } // Required to register for notifications