Skip to content

Commit

Permalink
#810112: Re-apply fixed invalid implementation of Extension Provider'…
Browse files Browse the repository at this point in the history
…s parser
  • Loading branch information
Reinout van Schouwen committed Jul 14, 2016
1 parent 5b45287 commit fda72ff
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public class GCMConnection implements MessagingServiceConnection<GCMSettings, Go
@Override
public PacketExtension parseExtension(XmlPullParser parser)
throws Exception {
String json = parser.getText();
String json = parser.nextText();
return new GcmPacketExtension(json);
}
});
Expand Down

0 comments on commit fda72ff

Please sign in to comment.