diff options
author | Kim Alvefur <zash@zash.se> | 2018-11-27 17:01:47 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-11-27 17:01:47 +0100 |
commit | cf22878c983c7ebd6cf2a6bef90ed44b7295298d (patch) | |
tree | 5a2109f91ba257bb3262c763d0c4d338ddcf4aea /plugins/muc/muc.lib.lua | |
parent | 88940a3559cbe1ce175bcf6969b233dbb4bdd7c4 (diff) | |
download | prosody-cf22878c983c7ebd6cf2a6bef90ed44b7295298d.tar.gz prosody-cf22878c983c7ebd6cf2a6bef90ed44b7295298d.zip |
MUC: Move check for explicit room join earlier in room creation flow
Diffstat (limited to 'plugins/muc/muc.lib.lua')
-rw-r--r-- | plugins/muc/muc.lib.lua | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/plugins/muc/muc.lib.lua b/plugins/muc/muc.lib.lua index 96f58023..0009e9b2 100644 --- a/plugins/muc/muc.lib.lua +++ b/plugins/muc/muc.lib.lua @@ -428,13 +428,6 @@ module:hook("muc-occupant-pre-change", function(event) end, 1); function room_mt:handle_first_presence(origin, stanza) - if not stanza:get_child("x", "http://jabber.org/protocol/muc") then - module:log("debug", "Room creation without <x>, possibly desynced"); - - origin.send(st.error_reply(stanza, "cancel", "item-not-found")); - return true; - end - local real_jid = stanza.attr.from; local dest_jid = stanza.attr.to; local bare_jid = jid_bare(real_jid); |