aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2013-06-19 16:35:19 +0200
committerKim Alvefur <zash@zash.se>2013-06-19 16:35:19 +0200
commitf1ced1f324f0e986ade2e1088b74445257afac73 (patch)
tree32533b2f244a713a7de59703edc3da380f68d516 /plugins
parent54a6165d5d48aa248151811dbff7c09cafe8be12 (diff)
downloadprosody-f1ced1f324f0e986ade2e1088b74445257afac73.tar.gz
prosody-f1ced1f324f0e986ade2e1088b74445257afac73.zip
mod_register: Fix indentation
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mod_register.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_register.lua b/plugins/mod_register.lua
index 3d7a068c..3cdb48b3 100644
--- a/plugins/mod_register.lua
+++ b/plugins/mod_register.lua
@@ -72,7 +72,7 @@ module:add_feature("jabber:iq:register");
local register_stream_feature = st.stanza("register", {xmlns="http://jabber.org/features/iq-register"}):up();
module:hook("stream-features", function(event)
- local session, features = event.origin, event.features;
+ local session, features = event.origin, event.features;
-- Advertise registration to unauthorized clients only.
if not(allow_registration) or session.type ~= "c2s_unauthed" then