Browse Source

[Minor] Fix luacheck

tags/3.5
Vsevolod Stakhov 1 year ago
parent
commit
59fcbfaa87
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/plugins/lua/phishing.lua

+ 1
- 1
src/plugins/lua/phishing.lua View File

@@ -304,7 +304,7 @@ local function phishing_cb(task)
if not sweight then sweight = weight end
if #map > 0 then
for _,rule in ipairs(map) do
local found,dn = is_url_in_map(rule.map, furl)
local found,_ = is_url_in_map(rule.map, furl)
if found then
task:insert_result(rule.symbol, sweight, ptld .. '->' .. tld)
return true

Loading…
Cancel
Save