diff options
author | Kim Alvefur <zash@zash.se> | 2013-12-14 17:25:17 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2013-12-14 17:25:17 +0100 |
commit | 5309dbf4a16ced97fda805103c74b208c540f2b4 (patch) | |
tree | 9ed6330f648e3558e4f923863df2ecf4e8a46e79 /plugins | |
parent | adc2d4f169267b619ab6224ddf198f3437bac21a (diff) | |
download | prosody-5309dbf4a16ced97fda805103c74b208c540f2b4.tar.gz prosody-5309dbf4a16ced97fda805103c74b208c540f2b4.zip |
mod_muc: Remove extra parenthesis (thanks janhouse)
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/muc/mod_muc.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/muc/mod_muc.lua b/plugins/muc/mod_muc.lua index c8488a85..edebf070 100644 --- a/plugins/muc/mod_muc.lua +++ b/plugins/muc/mod_muc.lua @@ -155,7 +155,7 @@ function stanza_handler(event) return true; end if not(restrict_room_creation) or - is_admin(stanza.attr.from)) or + is_admin(stanza.attr.from) or (restrict_room_creation == "local" and select(2, jid_split(stanza.attr.from)) == module.host:gsub("^[^%.]+%.", "")) then room = create_room(bare); end |