mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-22 16:20:52 +01:00
minor bug fixes related to the use/conversion of/to exmpp (thanks to Karim Gemayel)
SVN Revision: 2733
This commit is contained in:
parent
a1e9b55ead
commit
bde4b7b057
@ -132,7 +132,9 @@ get_options_xform(Lang, Options) ->
|
||||
children = [?XMLCDATA(?NS_PUBSUB_SUBSCRIBE_OPTIONS_s)]}]}] ++ XFields}}.
|
||||
|
||||
parse_options_xform(XFields) ->
|
||||
case exmpp_xml:get_child_elements(XFields) of
|
||||
case XFields of
|
||||
[] -> {result, []};
|
||||
_ -> case exmpp_xml:get_child_elements(XFields) of
|
||||
[] -> {result, []};
|
||||
[#xmlel{name = 'x'} = XEl] ->
|
||||
case jlib:parse_xdata_submit(XEl) of
|
||||
@ -146,6 +148,7 @@ parse_options_xform(XFields) ->
|
||||
end;
|
||||
Other ->
|
||||
Other
|
||||
end
|
||||
end.
|
||||
|
||||
%%====================================================================
|
||||
|
Loading…
Reference in New Issue
Block a user