net.unbound: Fix to initialize under prosodyctl

Lazy initialization only worked for async queries, but prosodyctl check
dns uses sync queries.
This commit is contained in:
Kim Alvefur 2021-01-21 23:33:59 +01:00
parent ed63f7f10b
commit 77ee71daa7

View file

@ -139,6 +139,7 @@ local function lookup(callback, qname, qtype, qclass)
end
local function lookup_sync(qname, qtype, qclass)
if not unbound then initialize(); end
qtype = qtype and s_upper(qtype) or "A";
qclass = qclass and s_upper(qclass) or "IN";
local ntype, nclass = types[qtype], classes[qclass];