We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1092e13 commit 2207ddaCopy full SHA for 2207dda
src/android/com/plugin/gcm/GCMIntentService.java
@@ -82,7 +82,7 @@ protected void onMessage(Context context, Intent intent) {
82
}
83
84
// Send a notification if there is a message
85
- if (message && message.length() != 0) {
+ if (message != null && message.length() != 0) {
86
createNotification(context, extras);
87
88
0 commit comments