mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_dialback: Ignore unused arguments [luacheck]
This commit is contained in:
parent
e8ff8bf606
commit
cf7486984a
1 changed files with 2 additions and 2 deletions
|
@ -190,7 +190,7 @@ module:hook("stanza/jabber:server:dialback:result", function(event)
|
|||
end
|
||||
end);
|
||||
|
||||
module:hook_tag("urn:ietf:params:xml:ns:xmpp-sasl", "failure", function (origin, stanza)
|
||||
module:hook_tag("urn:ietf:params:xml:ns:xmpp-sasl", "failure", function (origin, stanza) -- luacheck: ignore 212/stanza
|
||||
if origin.external_auth == "failed" then
|
||||
module:log("debug", "SASL EXTERNAL failed, falling back to dialback");
|
||||
initiate_dialback(origin);
|
||||
|
@ -198,7 +198,7 @@ module:hook_tag("urn:ietf:params:xml:ns:xmpp-sasl", "failure", function (origin,
|
|||
end
|
||||
end, 100);
|
||||
|
||||
module:hook_tag(xmlns_stream, "features", function (origin, stanza)
|
||||
module:hook_tag(xmlns_stream, "features", function (origin, stanza) -- luacheck: ignore 212/stanza
|
||||
if not origin.external_auth or origin.external_auth == "failed" then
|
||||
module:log("debug", "Initiating dialback...");
|
||||
initiate_dialback(origin);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue