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 | bf88cc6f6c98c8d93bd5852194c0e4c14d0533a5 (patch) | |
tree | 9ed6330f648e3558e4f923863df2ecf4e8a46e79 | |
parent | 3c2e8f23781fc356c40ca4c2a1eb0ef5543e93ab (diff) | |
download | prosody-bf88cc6f6c98c8d93bd5852194c0e4c14d0533a5.tar.gz prosody-bf88cc6f6c98c8d93bd5852194c0e4c14d0533a5.zip |
mod_muc: Remove extra parenthesis (thanks janhouse)
-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 |