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 | 9aa86079aa7b807cf32011b68a2c14f02932e4bf (patch) | |
tree | c1ff3939fa21b5569852645404a57e71a37c8100 | |
parent | d11fa0d993115ec884ef1003fce2458af8b93321 (diff) | |
download | prosody-9aa86079aa7b807cf32011b68a2c14f02932e4bf.tar.gz prosody-9aa86079aa7b807cf32011b68a2c14f02932e4bf.zip |
MUC: Normalize indentation
-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) |