util.prosodyctl.check: Fix A/AAAA check for proxy65 and http

When there are no records to return the return value from dns.lookup()
might be nil or might be a table containing zero records, depending on
which DNS library is used
This commit is contained in:
Kim Alvefur 2022-01-30 16:04:22 +01:00
parent 8ebfaefcbb
commit 26e4b84130

View file

@ -608,8 +608,8 @@ local function check(arg)
local function check_address(target)
local A, AAAA = dns.lookup(idna.to_ascii(target), "A"), dns.lookup(idna.to_ascii(target), "AAAA");
local prob = {};
if use_ipv4 and not A then table.insert(prob, "A"); end
if use_ipv6 and not AAAA then table.insert(prob, "AAAA"); end
if use_ipv4 and not (A and #A > 0) then table.insert(prob, "A"); end
if use_ipv6 and not (AAAA and #AAAA > 0) then table.insert(prob, "AAAA"); end
return prob;
end