diff options
author | Kim Alvefur <zash@zash.se> | 2018-05-01 20:45:22 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-05-01 20:45:22 +0200 |
commit | 3f6ffa7cd6bc712f475989cc7b027d8a7312e358 (patch) | |
tree | 2bc7e071b61da4ab09e651f82f1f6d7d8a512cf6 | |
parent | 1277677cc454c1609b2b88b34279e1d812cdc1ce (diff) | |
download | prosody-3f6ffa7cd6bc712f475989cc7b027d8a7312e358.tar.gz prosody-3f6ffa7cd6bc712f475989cc7b027d8a7312e358.zip |
mod_legacyauth: Split a long line [luacheck]
-rw-r--r-- | plugins/mod_legacyauth.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/mod_legacyauth.lua b/plugins/mod_legacyauth.lua index 5edc26bb..0f41d3e7 100644 --- a/plugins/mod_legacyauth.lua +++ b/plugins/mod_legacyauth.lua @@ -35,7 +35,8 @@ module:hook("stanza/iq/jabber:iq:auth:query", function(event) local session, stanza = event.origin, event.stanza; if session.type ~= "c2s_unauthed" then - (session.sends2s or session.send)(st.error_reply(stanza, "cancel", "service-unavailable", "Legacy authentication is only allowed for unauthenticated client connections.")); + (session.sends2s or session.send)(st.error_reply(stanza, "cancel", "service-unavailable", + "Legacy authentication is only allowed for unauthenticated client connections.")); return true; end |