From 48bf837e32e8c4b5e9c0a0ec6f39726931e1a70f Mon Sep 17 00:00:00 2001 From: Ibrahim Hadeed Date: Fri, 25 Mar 2016 21:03:21 -0400 Subject: [PATCH] fix(push plugin): senderId is optional in iosPushOptions closes https://github.com/driftyco/ionic-native/issues/58 --- src/plugins/push.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/push.ts b/src/plugins/push.ts index cbae429aa..ada86fbec 100644 --- a/src/plugins/push.ts +++ b/src/plugins/push.ts @@ -141,7 +141,7 @@ export interface iOSPushOptions { * Maps to the project number in the Google Developer Console. Setting this * uses GCM for notifications instead of native. */ - senderID: string; + senderID?: string; /** * Whether to use prod or sandbox GCM setting.