mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-24 16:23:40 +01:00
reapply previous RSM filtering fix drop by mistake
SVN Revision: 2555
This commit is contained in:
parent
57aefa240f
commit
ff1fc2b4f0
@ -1093,10 +1093,9 @@ iq_pubsub(Host, ServerHost, From, IQType, SubEl, Lang, Access, Plugins) ->
|
||||
|
||||
iq_pubsub_owner(Host, ServerHost, From, IQType, SubEl, Lang) ->
|
||||
{xmlelement, _, _, SubEls} = SubEl,
|
||||
NoRSM = lists:filter(fun({xmlelement, Name, _, _}) ->
|
||||
Name == "set"
|
||||
end, SubEls),
|
||||
Action = xml:remove_cdata(SubEls) -- NoRSM,
|
||||
Action = lists:filter(fun({xmlelement, "set", _, _}) -> false;
|
||||
(_) -> true
|
||||
end, xml:remove_cdata(SubEls)),
|
||||
case Action of
|
||||
[{xmlelement, Name, Attrs, Els}] ->
|
||||
Node = case Host of
|
||||
|
Loading…
Reference in New Issue
Block a user