We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57e8f47 commit 84433fdCopy full SHA for 84433fd
notification-extension/ITBNotificationServiceExtension.swift
@@ -109,7 +109,9 @@ import UserNotifications
109
// IMPORTANT: need to add this to the documentation
110
bestAttemptContent?.categoryIdentifier = id
111
112
- DispatchQueue.main.asyncAfter(deadline: .now() + 1) {
+ // for some reason, the check needs to be put into this dispatch
113
+ // to function properly for rich pushes with buttons but no image
114
+ DispatchQueue.main.asyncAfter(deadline: .now() + 0.01) {
115
self.getCategoryIdFinished = true
116
}
117
0 commit comments