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 1052eda commit 50652c4Copy full SHA for 50652c4
ios/Classes/CallKeep.m
@@ -232,8 +232,14 @@ - (void)pushRegistry:(PKPushRegistry *)registry didReceiveIncomingPushWithPayloa
232
"has_video": false,
233
}
234
*/
235
+
236
NSDictionary *dic = payload.dictionaryPayload;
237
238
+ if (dic[@"aps"] != nil) {
239
+ NSLog(@"Do not use the 'alert' format for push type %@.", payload.type);
240
+ return;
241
+ }
242
243
NSString *uuid = dic[@"uuid"];
244
NSString *callerId = dic[@"caller_id"];
245
NSString *callerName = dic[@"caller_name"];
0 commit comments