Commit 523a4e1b by Sebastián Katzer

Fix alignment

parent 641ff31a
...@@ -508,7 +508,9 @@ ...@@ -508,7 +508,9 @@
UNNotificationRequest* toast = notification.request; UNNotificationRequest* toast = notification.request;
if ([toast.trigger isKindOfClass:UNPushNotificationTrigger.class]) { if ([toast.trigger isKindOfClass:UNPushNotificationTrigger.class]) {
[_delegate userNotificationCenter:center willPresentNotification:notification withCompletionHandler:completionHandler]; [_delegate userNotificationCenter:center
willPresentNotification:notification
withCompletionHandler:completionHandler];
return; return;
} }
...@@ -540,7 +542,9 @@ ...@@ -540,7 +542,9 @@
completionHandler(); completionHandler();
if ([toast.trigger isKindOfClass:UNPushNotificationTrigger.class]) { if ([toast.trigger isKindOfClass:UNPushNotificationTrigger.class]) {
[_delegate userNotificationCenter:center didReceiveNotificationResponse:response withCompletionHandler:completionHandler]; [_delegate userNotificationCenter:center
didReceiveNotificationResponse:response
withCompletionHandler:completionHandler];
return; return;
} }
...@@ -711,3 +715,4 @@ ...@@ -711,3 +715,4 @@
} }
@end @end
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment