Hi, could somebody help me on this?
In my app, clicking to a notification will navigate to other view, like this:
cordova.plugins.notification.local.on("click", function(notification) { $state.go("detailPage", {pageId: notification.data.pageId}) }
It s working perfectly. But if I’m opening a modal in the current view (using $ionicModal), then click a notification, the modal will not hide. If I close the modal, I will see the navigated view.
Do anybody meet the same problem ?
Thank you for your time.