From b3cd399e10f6cf216a474574d7465b4e1d563550 Mon Sep 17 00:00:00 2001 From: Brendan Chen Date: Wed, 23 Apr 2025 11:54:32 -0700 Subject: [PATCH] fix custom keys so they're spread across payload correctly --- src/notifications/senders/AppleNotificationSender.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/notifications/senders/AppleNotificationSender.ts b/src/notifications/senders/AppleNotificationSender.ts index 2f458af..4aac769 100644 --- a/src/notifications/senders/AppleNotificationSender.ts +++ b/src/notifications/senders/AppleNotificationSender.ts @@ -119,7 +119,7 @@ export class AppleNotificationSender { alert: notificationAlertArguments, sound: "default" }, - customKeys, + ...customKeys, }); req.write(payload); req.end();