aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_legacyauth.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2018-05-01 20:45:22 +0200
committerKim Alvefur <zash@zash.se>2018-05-01 20:45:22 +0200
commit3f6ffa7cd6bc712f475989cc7b027d8a7312e358 (patch)
tree2bc7e071b61da4ab09e651f82f1f6d7d8a512cf6 /plugins/mod_legacyauth.lua
parent1277677cc454c1609b2b88b34279e1d812cdc1ce (diff)
downloadprosody-3f6ffa7cd6bc712f475989cc7b027d8a7312e358.tar.gz
prosody-3f6ffa7cd6bc712f475989cc7b027d8a7312e358.zip
mod_legacyauth: Split a long line [luacheck]
Diffstat (limited to 'plugins/mod_legacyauth.lua')
-rw-r--r--plugins/mod_legacyauth.lua3
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