diff options
author | Matthew Wild <mwild1@gmail.com> | 2016-03-07 13:43:05 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2016-03-07 13:43:05 +0000 |
commit | c92c12d5d2dc34214863c4bee72399c09a445394 (patch) | |
tree | dd6fe8874b4fb15f7bd99e27d23d6eb72127a189 /plugins/muc/mod_muc.lua | |
parent | d7ffd11752a2867699831bc761a5f869eb91b400 (diff) | |
parent | 02381f2835577bf932c300d22889aa23302b9cf9 (diff) | |
download | prosody-c92c12d5d2dc34214863c4bee72399c09a445394.tar.gz prosody-c92c12d5d2dc34214863c4bee72399c09a445394.zip |
Merge
Diffstat (limited to 'plugins/muc/mod_muc.lua')
-rw-r--r-- | plugins/muc/mod_muc.lua | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/muc/mod_muc.lua b/plugins/muc/mod_muc.lua index 4f5831a6..74909d9b 100644 --- a/plugins/muc/mod_muc.lua +++ b/plugins/muc/mod_muc.lua @@ -255,9 +255,11 @@ for event_name, method in pairs { -- Watch presence to create rooms if stanza.attr.type == nil and stanza.name == "presence" then room = muclib.new_room(room_jid); - else + elseif stanza.attr.type ~= "error" then origin.send(st.error_reply(stanza, "cancel", "not-allowed")); return true; + else + return; end end return room[method](room, origin, stanza); |