diff options
author | Kim Alvefur <zash@zash.se> | 2021-12-08 21:02:14 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2021-12-08 21:02:14 +0100 |
commit | d621e0626cc19c7e9de8956079df3f2abe148251 (patch) | |
tree | b0f870ac01fc84e84e98919787f3df09ba66021c /plugins/muc/muc.lib.lua | |
parent | 3ae5d13641715b2c7941351a7fc8ff0153db4cef (diff) | |
download | prosody-d621e0626cc19c7e9de8956079df3f2abe148251.tar.gz prosody-d621e0626cc19c7e9de8956079df3f2abe148251.zip |
MUC: Remove remaining deprecated numeric error codes
The numeric error codes seems to have been removed from the examples in
XEP-0045 version 1.24, and were deprecated even by RFC 3920 in 2004,
only allowed for backwards compatibility.
Diffstat (limited to 'plugins/muc/muc.lib.lua')
-rw-r--r-- | plugins/muc/muc.lib.lua | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/plugins/muc/muc.lib.lua b/plugins/muc/muc.lib.lua index c146255a..5e39d317 100644 --- a/plugins/muc/muc.lib.lua +++ b/plugins/muc/muc.lib.lua @@ -449,7 +449,6 @@ module:hook("muc-occupant-pre-join", function(event) local affiliation = room:get_affiliation(stanza.attr.from); if affiliation == "outcast" then local reply = st.error_reply(stanza, "auth", "forbidden", nil, room.jid):up(); - reply.tags[1].attr.code = "403"; event.origin.send(reply:tag("x", {xmlns = "http://jabber.org/protocol/muc"})); return true; end @@ -692,7 +691,6 @@ function room_mt:handle_normal_presence(origin, stanza) -- new nick or has different bare real jid log("debug", "%s couldn't join due to nick conflict: %s", real_jid, dest_occupant.nick); local reply = st.error_reply(stanza, "cancel", "conflict", nil, self.jid):up(); - reply.tags[1].attr.code = "409"; origin.send(reply:tag("x", {xmlns = "http://jabber.org/protocol/muc"})); return true; end |