aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
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
commit39d6068003836790e511e9f4df76ec2feb24d0ed (patch)
treeb1e3eebe1e62f9d3b704de31510344aa3b8d0d09 /plugins
parentd4a3ab7b750918ceb5a2c01def4bebab0a9a8230 (diff)
downloadprosody-39d6068003836790e511e9f4df76ec2feb24d0ed.tar.gz
prosody-39d6068003836790e511e9f4df76ec2feb24d0ed.zip
mod_muc: Remove extra parenthesis (thanks janhouse)
Diffstat (limited to 'plugins')
-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 38c97d61..042d3891 100644
--- a/plugins/muc/mod_muc.lua
+++ b/plugins/muc/mod_muc.lua
@@ -164,7 +164,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