diff --git a/src/providers/local-notifications.ts b/src/providers/local-notifications.ts index 5417b5ff3..308ffb4c7 100644 --- a/src/providers/local-notifications.ts +++ b/src/providers/local-notifications.ts @@ -136,8 +136,8 @@ export class CoreLocalNotificationsProvider { this.handleEvent('cancel', notification); }); - this.addSubscription = localNotifications.on('add').subscribe((notification: ILocalNotification) => { - this.handleEvent('add', notification); + this.addSubscription = localNotifications.on('schedule').subscribe((notification: ILocalNotification) => { + this.handleEvent('schedule', notification); }); this.updateSubscription = localNotifications.on('update').subscribe((notification: ILocalNotification) => {