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
commite9956722e55a4e9d21def21abb1c1081be9a92be (patch)
tree32533b2f244a713a7de59703edc3da380f68d516 /plugins
parent3122b6ee6e4e7e530967eeefe9f60300fdfaf7a9 (diff)
downloadprosody-e9956722e55a4e9d21def21abb1c1081be9a92be.tar.gz
prosody-e9956722e55a4e9d21def21abb1c1081be9a92be.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