Details
-
Type:
Bug
-
Status: Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: ejabberd 3.0.0-alpha-1
-
Fix Version/s: None
-
Component/s: None
-
Company:
-
Last commented by user ?:false
Description
RSM decoding is broken (after porting to exmpp?)
The following change fixes the issue:
Index: jlib.erl
===================================================================
--- jlib.erl (revision 2653)
+++ jlib.erl (working copy)
@@ -92,7 +92,7 @@
case exmpp_xml:get_element(SubEl, 'set') of
undefined ->
none;
- #xmlelement{name = 'set', children = SubEls}->
+ #xmlel{name = 'set', children = SubEls}->
lists:foldl(fun rsm_parse_element/2, #rsm_in{}, SubEls)
end.
Bugfix applied in road-to-exmpp branch in SVN r2670.
I put "fixed version: none" because the bug was not yet included in any release.