Skip to content

Commit

Permalink
fix(ios): revert an accidental change to iOS's action property key 'c…
Browse files Browse the repository at this point in the history
…allback'
  • Loading branch information
erisu committed Dec 9, 2024
1 parent 8b8156a commit 2e22e22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ios/PushPluginSettings.m
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ - (UNNotificationAction *)createActionFromDictionary:(NSDictionary *)dictionary
return nil;
}

NSString *identifier = [dictionary objectForKey:@"identifier"];
NSString *identifier = [dictionary objectForKey:@"callback"];
NSString *title = [dictionary objectForKey:@"title"];

if (!title || !identifier) {
Expand Down

0 comments on commit 2e22e22

Please sign in to comment.