mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-20 16:15:59 +01:00
Minor case code simplification.
SVN Revision: 2873
This commit is contained in:
parent
7b05ba0e1e
commit
8447dfa4b1
@ -44,11 +44,11 @@ parse_request(#iq{type = set, lang = Lang, sub_el = SubEl, xmlns = ?NS_COMMANDS}
|
||||
Action = xml:get_tag_attr_s("action", SubEl),
|
||||
XData = find_xdata_el(SubEl),
|
||||
{xmlelement, _, _, AllEls} = SubEl,
|
||||
case XData of
|
||||
Others = case XData of
|
||||
false ->
|
||||
Others = AllEls;
|
||||
AllEls;
|
||||
_ ->
|
||||
Others = lists:delete(XData, AllEls)
|
||||
lists:delete(XData, AllEls)
|
||||
end,
|
||||
|
||||
#adhoc_request{lang = Lang,
|
||||
|
Loading…
Reference in New Issue
Block a user