Browse Source

support for non-TLD domains

tags/1.8.0
Andrey Igoshin 5 years ago
parent
commit
a5c51c24d5
1 changed files with 3 additions and 0 deletions
  1. 3
    0
      src/plugins/lua/whitelist.lua

+ 3
- 0
src/plugins/lua/whitelist.lua View File

@@ -161,6 +161,9 @@ local function whitelist_cb(symbol, rule, task)

if tld then
found, mult = find_domain(tld)
if not found then
found, mult = find_domain(from[1]['domain'])
end
end
end
end

Loading…
Cancel
Save