Skip to content

Commit

Permalink
fix(onesignal): OSNotification.app_id is optional (#946)
Browse files Browse the repository at this point in the history
OSNotification::app_id is not required when sending a selfNotification.
  • Loading branch information
uPaymeiFixit authored and ihadeed committed Jan 9, 2017
1 parent 6ddd2aa commit ebf0716
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/onesignal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export interface OSNotification {
* **ANDROID** - Notification is a summary notification for a group this will contain all notification payloads it was created from.
*/
groupedNotifications?: OSNotificationPayload[];
app_id: string;
app_id?: string;
contents: any;
headings?: any;
isIos?: boolean;
Expand Down

0 comments on commit ebf0716

Please sign in to comment.