mirror of
https://github.com/YTVanced/VancedMicroG
synced 2024-11-23 19:55:12 +00:00
GoogleCloudMessaging getMessageType shouldn't throw IOException
This commit is contained in:
parent
74213474b5
commit
0522ed41fb
1 changed files with 2 additions and 2 deletions
|
@ -167,7 +167,7 @@ public class GoogleCloudMessaging {
|
|||
*
|
||||
* @return The message type or null if the intent is not a GCM intent
|
||||
*/
|
||||
public String getMessageType(Intent intent) throws IOException {
|
||||
public String getMessageType(Intent intent) {
|
||||
if (intent == null || !ACTION_C2DM_RECEIVE.equals(intent.getAction())) return null;
|
||||
if (!intent.hasExtra(EXTRA_MESSAGE_TYPE)) return MESSAGE_TYPE_MESSAGE;
|
||||
return intent.getStringExtra(EXTRA_MESSAGE_TYPE);
|
||||
|
@ -319,4 +319,4 @@ public class GoogleCloudMessaging {
|
|||
}
|
||||
return InstanceID.getInstance(context).getStore().get("", to, INSTANCE_ID_SCOPE);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue