diff options
author | Kim Alvefur <zash@zash.se> | 2018-07-11 11:50:44 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-07-11 11:50:44 +0200 |
commit | d9fd615dda15352a200c6635a88c5df5d0bd26d0 (patch) | |
tree | e4e6dd66938e9961b116eb57ffce07e642540fbc | |
parent | 8596a62e17646e5ff7af877d9c70a7875e65a155 (diff) | |
download | prosody-d9fd615dda15352a200c6635a88c5df5d0bd26d0.tar.gz prosody-d9fd615dda15352a200c6635a88c5df5d0bd26d0.zip |
MUC: Send an 'gone' error instead of unavailable + <destroyed>
List discussion here:
https://mail.jabber.org/pipermail/standards/2018-July/035228.html
-rw-r--r-- | plugins/muc/mod_muc.lua | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/plugins/muc/mod_muc.lua b/plugins/muc/mod_muc.lua index cc0c675b..28adbbb0 100644 --- a/plugins/muc/mod_muc.lua +++ b/plugins/muc/mod_muc.lua @@ -403,11 +403,7 @@ for event_name, method in pairs { delete_room(room); room = nil; else - local reply = st.reply(stanza) - :tag("x", {xmlns = "http://jabber.org/protocol/muc#user"}) - :tag("item", { affiliation='none', role='none' }):up() - :tag("destroy", {jid=room._data.newjid}):text(room._data.reason); - reply.attr.type = "unavailable"; + local reply = st.error_reply(stanza, "cancel", "gone", room._data.reason) event.origin.send(reply); return true; end |