aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2013-12-14 17:25:17 +0100
committerKim Alvefur <zash@zash.se>2013-12-14 17:25:17 +0100
commite677e298b77815fcdd2c74b32604f921c11f1f1d (patch)
tree9ed6330f648e3558e4f923863df2ecf4e8a46e79
parent44f6003fd1dc2ccc59b3f0250bf75f80c3f70e8e (diff)
downloadprosody-e677e298b77815fcdd2c74b32604f921c11f1f1d.tar.gz
prosody-e677e298b77815fcdd2c74b32604f921c11f1f1d.zip
mod_muc: Remove extra parenthesis (thanks janhouse)
-rw-r--r--plugins/muc/mod_muc.lua2
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