diff --git a/.github/readme/notification.png b/.github/readme/notification.png index d32a767..40ec014 100644 Binary files a/.github/readme/notification.png and b/.github/readme/notification.png differ diff --git a/SecretAgent/Notifier.swift b/SecretAgent/Notifier.swift index ace969d..d805066 100644 --- a/SecretAgent/Notifier.swift +++ b/SecretAgent/Notifier.swift @@ -16,7 +16,7 @@ class Notifier { let notificationCenter = UNUserNotificationCenter.current() let notificationContent = UNMutableNotificationContent() notificationContent.title = "Signed Request from \(provenance.origin.name)" - notificationContent.subtitle = secret.name + notificationContent.subtitle = "Using secret \"\(secret.name)\"" if let iconURL = iconURL(for: provenance), let attachment = try? UNNotificationAttachment(identifier: "icon", url: iconURL, options: nil) { notificationContent.attachments = [attachment] }