Software /
code /
prosody
Changeset
7448:34678ce8a6ac
core.stanza_router: Remove compatibility with Jabiru not including id attribute (originally added in 9b352c8a32e6)
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Mon, 30 May 2016 13:29:43 +0200 |
parents | 7446:0db72fac2faa |
children | 7449:6943b1dd4e3d |
files | core/stanza_router.lua |
diffstat | 1 files changed, 0 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/core/stanza_router.lua Sun May 29 15:57:03 2016 +0200 +++ b/core/stanza_router.lua Mon May 30 13:29:43 2016 +0200 @@ -62,7 +62,6 @@ return handle_unhandled_stanza(origin.host, origin, stanza); end 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 origin.send(st.error_reply(stanza, "modify", "bad-request", "Invalid IQ type or incorrect number of children")); return;