diff options
author | Kim Alvefur <zash@zash.se> | 2018-08-22 14:50:07 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-08-22 14:50:07 +0200 |
commit | 4202869a5a19b466746cce57e8576f5664a6f218 (patch) | |
tree | c1ff3939fa21b5569852645404a57e71a37c8100 /plugins/muc/mod_muc.lua | |
parent | dedea4fb31246e53e8700d90a9f29e0950016b6e (diff) | |
download | prosody-4202869a5a19b466746cce57e8576f5664a6f218.tar.gz prosody-4202869a5a19b466746cce57e8576f5664a6f218.zip |
MUC: Normalize indentation
Diffstat (limited to 'plugins/muc/mod_muc.lua')
-rw-r--r-- | plugins/muc/mod_muc.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/muc/mod_muc.lua b/plugins/muc/mod_muc.lua index 4438803c..b8e7b3a2 100644 --- a/plugins/muc/mod_muc.lua +++ b/plugins/muc/mod_muc.lua @@ -450,9 +450,9 @@ for event_name, method in pairs { else return; end - elseif room == false then -- Error loading room - origin.send(st.error_reply(stanza, "wait", "resource-constraint")); - return true; + elseif room == false then -- Error loading room + origin.send(st.error_reply(stanza, "wait", "resource-constraint")); + return true; end return room[method](room, origin, stanza); end, -2) |