taivo / parse-push-plugin

Push notification plugin for Cordova/Phonegap/ionic on Parse platform
118 stars 102 forks source link

Silent Notification Android Issue #72

Open xxvii27 opened 8 years ago

xxvii27 commented 8 years ago

https://github.com/taivo/parse-push-plugin/issues/33

Issue still persist event after using latest

xxvii27 commented 8 years ago

Solved this by adding this, to parse push plugin reciever.java as the first thing in the else block of ParsePushPlugin.isInForeground You can test this, as I currently don't have time to open a pull request JSONObject pnData = getPushData(intent); if(!pnData.has("alert")){ return; }