diff --git a/SecretAgent/Notifier.swift b/SecretAgent/Notifier.swift index 94a526e..4b94ec5 100644 --- a/SecretAgent/Notifier.swift +++ b/SecretAgent/Notifier.swift @@ -117,7 +117,7 @@ class NotificationDelegate: NSObject, UNUserNotificationCenterDelegate { } func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) { - completionHandler(.alert) + completionHandler([.list, .banner]) } }