删除无用判断

This commit is contained in:
Jing Ling
2019-08-21 16:42:57 +08:00
committed by GitHub
parent 76fc12c365
commit 2c581c31aa
-1
View File
@@ -25,7 +25,6 @@ class DNSdbAPI(Query):
resp = self.get(url) resp = self.get(url)
if not resp: if not resp:
return return
if resp.status_code == 200:
subdomains = utils.match_subdomain(self.domain, resp.text) subdomains = utils.match_subdomain(self.domain, resp.text)
# 合并搜索子域名搜索结果 # 合并搜索子域名搜索结果
self.subdomains = self.subdomains.union(subdomains) self.subdomains = self.subdomains.union(subdomains)