mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_tls: Ignore unused argument [luacheck]
This commit is contained in:
parent
6426801bd3
commit
1a12e55904
1 changed files with 1 additions and 1 deletions
|
@ -123,7 +123,7 @@ module:hook_stanza("http://etherx.jabber.org/streams", "features", function (ses
|
|||
end
|
||||
end, 500);
|
||||
|
||||
module:hook_stanza(xmlns_starttls, "proceed", function (session, stanza)
|
||||
module:hook_stanza(xmlns_starttls, "proceed", function (session, stanza) -- luacheck: ignore 212/stanza
|
||||
module:log("debug", "Proceeding with TLS on s2sout...");
|
||||
session:reset_stream();
|
||||
session.conn:starttls(session.ssl_ctx);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue