mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-22 12:02:05 +01:00
Include the full content in UnparsedResultIQ
In order to prevent <iq to='...' from='...' type='result' id='1'> <mynode xmlns='my:namespace' myattr='...'> <somenode\> </mynode> </iq> showing up as UnparsedResultIQ like this: <iq to='...' from='...' type='result' id='1'> <somenode\> </iq>
This commit is contained in:
parent
e63fe22647
commit
b5daee3032
1 changed files with 1 additions and 1 deletions
|
@ -642,7 +642,7 @@ public class PacketParserUtils {
|
|||
else if (IQ.Type.result == type){
|
||||
// No Provider found for the IQ stanza, parse it to an UnparsedIQ instance
|
||||
// so that the content of the IQ can be examined later on
|
||||
iqPacket = new UnparsedResultIQ(parseContent(parser));
|
||||
iqPacket = new UnparsedResultIQ(parseElement(parser));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue