net.resolvers.basic: Don't enable DANE with zero TLSA records

Turns out it doesn't work with zero.
This commit is contained in:
Kim Alvefur 2021-03-03 18:42:54 +01:00
parent 8673a99a09
commit 60ec880c48

View file

@ -37,7 +37,7 @@ function methods:next(cb)
if n > 0 then return; end
self.targets = targets;
if self.extra and self.extra.use_dane then
if secure then
if secure and tlsa[1] then
self.extra.tlsa = tlsa;
self.extra.dane_hostname = self.hostname;
else