# HG changeset patch # User Kim Alvefur # Date 1615846182 -3600 # Node ID 56a282ecdcf1fe34fac21aaf130433e54a99d136 # Parent ef623d7198943ed93d804beaf1418229fac0a0b8 net.resolvers.basic: Fix completion condition when IPv6 is disabled Fixes mistake introduced in 5a71f14ab77c that made it so this ready() newer got called and thus it would be stuck waiting for it. Looks like the kind of thing that could have been introduced by a merge or rebase. Thanks MattJ diff -r ef623d719894 -r 56a282ecdcf1 net/resolvers/basic.lua --- a/net/resolvers/basic.lua Mon Mar 15 19:04:08 2021 +0100 +++ b/net/resolvers/basic.lua Mon Mar 15 23:09:42 2021 +0100 @@ -74,6 +74,8 @@ end ready(); end, self.hostname, "AAAA", "IN"); + else + ready(); end if self.extra and self.extra.use_dane == true then