# HG changeset patch # User Matthew Wild # Date 1521670391 0 # Node ID 11b6aa30b3e01d9264f810e693632ebfbe2bff0a # Parent d2556f237bc2c9fea33dc165ade3a30f5fe44ba7 mod_proxy65: Fix all warnings from luacheck diff -r d2556f237bc2 -r 11b6aa30b3e0 plugins/mod_proxy65.lua --- a/plugins/mod_proxy65.lua Wed Mar 21 22:10:24 2018 +0000 +++ b/plugins/mod_proxy65.lua Wed Mar 21 22:13:11 2018 +0000 @@ -71,7 +71,7 @@ end end -function listener.ondisconnect(conn, err) +function listener.ondisconnect(conn) local session = sessions[conn]; if session then if transfers[session.sha] then @@ -79,7 +79,7 @@ if initiator == conn and target ~= nil then target:close(); elseif target == conn and initiator ~= nil then - initiator:close(); + initiator:close(); end transfers[session.sha] = nil; end @@ -109,7 +109,8 @@ local origin, stanza = event.origin, event.stanza; -- check ACL - while proxy_acl and #proxy_acl > 0 do -- using 'while' instead of 'if' so we can break out of it + -- using 'while' instead of 'if' so we can break out of it + while proxy_acl and #proxy_acl > 0 do --luacheck: ignore 512 local jid = stanza.attr.from; local allow; for _, acl in ipairs(proxy_acl) do