Attempt to fix dialyzer warning: adhoc.erl:51: Guard test XData::'false' | #xmlel{ns::'jabberdata',declared_ns::[{_,_}],attrs::[{_,_,_,_}],children::'undefined' | [{_,_} | {_,_,_,_,_,_}]} =:= 'true' can never succeed

SVN Revision: 2869
This commit is contained in:
Mickaël Rémond 2010-01-09 16:18:59 +00:00
parent b1ad7ad0ba
commit a0554183c5
1 changed files with 5 additions and 4 deletions

View File

@ -48,10 +48,11 @@ parse_request(#iq{type = Type, ns = NS, payload = SubEl, lang = Lang}) ->
Action = exmpp_xml:get_attribute_as_list(SubEl, 'action', ""),
XData = find_xdata_el(SubEl),
AllEls = exmpp_xml:get_child_elements(SubEl),
if XData ->
Others = lists:delete(XData, AllEls);
true ->
Others = AllEls
case XData of
false ->
Others = AllEls;
_ ->
Others = lists:delete(XData, AllEls)
end,
#adhoc_request{lang = Lang,