Commit 523a4e1b by Sebastián Katzer

Fix alignment

parent 641ff31a
......@@ -508,7 +508,9 @@
UNNotificationRequest* toast = notification.request;
if ([toast.trigger isKindOfClass:UNPushNotificationTrigger.class]) {
[_delegate userNotificationCenter:center willPresentNotification:notification withCompletionHandler:completionHandler];
[_delegate userNotificationCenter:center
willPresentNotification:notification
withCompletionHandler:completionHandler];
return;
}
......@@ -540,7 +542,9 @@
completionHandler();
if ([toast.trigger isKindOfClass:UNPushNotificationTrigger.class]) {
[_delegate userNotificationCenter:center didReceiveNotificationResponse:response withCompletionHandler:completionHandler];
[_delegate userNotificationCenter:center
didReceiveNotificationResponse:response
withCompletionHandler:completionHandler];
return;
}
......@@ -711,3 +715,4 @@
}
@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