Skip to content

Commit

Permalink
Update GCMIntentService.java
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenstolk committed Aug 4, 2015
1 parent bee3992 commit 1092e13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/android/com/plugin/gcm/GCMIntentService.java
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ protected void onMessage(Context context, Intent intent) {
extras.putBoolean("foreground", false);
String message = extras.getString("message");

if (message === null) {
if (message == null) {
// Providers like Parse always send a 'data' as root object, so "Parse" that
try {
JSONObject object_example = new JSONObject(extras.getString("data"));
Expand Down

0 comments on commit 1092e13

Please sign in to comment.