mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
core.stanza_router: Remove compatibility with Jabiru not including id attribute (originally added in 9b352c8a32e6)
This commit is contained in:
parent
6b2c577b20
commit
2d8b98ebaf
1 changed files with 0 additions and 1 deletions
|
@ -62,7 +62,6 @@ function core_process_stanza(origin, stanza)
|
||||||
return handle_unhandled_stanza(origin.host, origin, stanza);
|
return handle_unhandled_stanza(origin.host, origin, stanza);
|
||||||
end
|
end
|
||||||
if name == "iq" then
|
if name == "iq" then
|
||||||
if not stanza.attr.id then stanza.attr.id = ""; end -- COMPAT Jabiru doesn't send the id attribute on roster requests
|
|
||||||
if not iq_types[st_type] or ((st_type == "set" or st_type == "get") and (#stanza.tags ~= 1)) then
|
if not iq_types[st_type] or ((st_type == "set" or st_type == "get") and (#stanza.tags ~= 1)) then
|
||||||
origin.send(st.error_reply(stanza, "modify", "bad-request", "Invalid IQ type or incorrect number of children"));
|
origin.send(st.error_reply(stanza, "modify", "bad-request", "Invalid IQ type or incorrect number of children"));
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue