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 7b0384e commit b56f432Copy full SHA for b56f432
sample/ios/NotificationService/NotificationService.m
@@ -20,6 +20,7 @@ @implementation NotificationService
20
- (void)didReceiveNotificationRequest:(UNNotificationRequest *)request withContentHandler:(void (^)(UNNotificationContent * _Nonnull))contentHandler {
21
self.contentHandler = contentHandler;
22
self.bestAttemptContent = [request.content mutableCopy];
23
+ self.bestAttemptContent.title = [NSString stringWithFormat:@"[RN]%@", self.bestAttemptContent.title];
24
self.contentHandler(self.bestAttemptContent);
25
[NotifeeExtensionHelper populateNotificationContent:request
26
withContent: self.bestAttemptContent
0 commit comments