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 8dc1492 commit f3d7733Copy full SHA for f3d7733
ios/RNVoipPushNotification/RNVoipPushNotificationManager.m
@@ -44,6 +44,7 @@ + (UILocalNotification *)UILocalNotification:(id)json
44
NSDictionary<NSString *, id> *details = [self NSDictionary:json];
45
UILocalNotification *notification = [UILocalNotification new];
46
notification.fireDate = [RCTConvert NSDate:details[@"fireDate"]] ?: [NSDate date];
47
+ notification.alertTitle = [RCTConvert NSString:details[@"alertTitle"]];
48
notification.alertBody = [RCTConvert NSString:details[@"alertBody"]];
49
notification.alertAction = [RCTConvert NSString:details[@"alertAction"]];
50
notification.soundName = [RCTConvert NSString:details[@"soundName"]] ?: UILocalNotificationDefaultSoundName;
0 commit comments