diff options
author | Kim Alvefur <zash@zash.se> | 2013-06-19 16:35:19 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2013-06-19 16:35:19 +0200 |
commit | e9956722e55a4e9d21def21abb1c1081be9a92be (patch) | |
tree | 32533b2f244a713a7de59703edc3da380f68d516 | |
parent | 3122b6ee6e4e7e530967eeefe9f60300fdfaf7a9 (diff) | |
download | prosody-e9956722e55a4e9d21def21abb1c1081be9a92be.tar.gz prosody-e9956722e55a4e9d21def21abb1c1081be9a92be.zip |
mod_register: Fix indentation
-rw-r--r-- | plugins/mod_register.lua | 2 |
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 |