mod_register: Fix indentation
[prosody.git] / plugins / mod_register.lua
index 3d7a068c61809c4d8d556bd3f4ca0859ebe32ca8..3cdb48b32b22e79fea6d169fe159df0c3a21df77 100644 (file)
@@ -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