mod_legacyauth: Split a long line [luacheck]

This commit is contained in:
Kim Alvefur 2018-05-01 20:45:22 +02:00
parent 1277677cc4
commit 3f6ffa7cd6

View file

@ -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