1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2024-06-30 15:26:46 +02:00

Skips CRs while parsing packet properties. SMACK-138

git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@2321 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
Gaston Dombiak 2004-06-03 16:18:30 +00:00 committed by gdombiak
parent 250ab4de71
commit 2bb363b898

View file

@ -748,9 +748,13 @@ class PacketReader {
int eventType = parser.next();
if (eventType == XmlPullParser.START_TAG && parser.getName().equals("property")) {
// Advance to name element.
// Skip CRs
parser.next();
parser.next();
String name = parser.nextText();
parser.next();
// Skip CRs
parser.next();
String type = parser.getAttributeValue("", "type");
String valueText = parser.nextText();
Object value = null;