mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-19 10:32:05 +01:00
55d7b9d4eb
The exiting code generates an unintentional nested 'options' child element: ``` <iq to='pubsub.example.org' id='FQTHU-126' type='get'> <pubsub xmlns='http://jabber.org/protocol/pubsub'> <options node='sinttest-multisubscribe-nodename-13pnc'> <options jid='smack-inttest-two-13pnc@example.org' node='sinttest-multisubscribe-nodename-13pnc'/> </options> </pubsub> </iq> ``` This commit removes the undesired nesting, resulting in: ``` <iq to='pubsub.example.org' id='FQTHU-126' type='get'> <pubsub xmlns='http://jabber.org/protocol/pubsub'> <options jid='smack-inttest-two-13pnc@example.org' node='sinttest-multisubscribe-nodename-13pnc'/> </pubsub> </iq> ``` |
||
---|---|---|
.. | ||
src | ||
build.gradle |