From 2e22e22ff78c16dd077da16f68172cc877ea16d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=82=A8=E3=83=AA=E3=82=B9?= Date: Mon, 9 Dec 2024 11:05:28 +0900 Subject: [PATCH] fix(ios): revert an accidental change to iOS's action property key 'callback' --- src/ios/PushPluginSettings.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ios/PushPluginSettings.m b/src/ios/PushPluginSettings.m index e6ece77ed..037ddc9f9 100644 --- a/src/ios/PushPluginSettings.m +++ b/src/ios/PushPluginSettings.m @@ -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) {