mirror of
https://github.com/laramies/theHarvester.git
synced 2024-11-11 09:41:06 +08:00
Fixed small bug.
This commit is contained in:
parent
3bd1b8e12e
commit
84665c2e59
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ async def do_search(self) -> None:
|
|||
elif isinstance(response, dict):
|
||||
self.totalhosts.update({response['dns_names'] if 'dns_names' in response.keys() else ''})
|
||||
else:
|
||||
self.totalhosts.union('')
|
||||
self.totalhosts.update({''})
|
||||
except Exception as e:
|
||||
print(e)
|
||||
|
||||
|
|
Loading…
Reference in a new issue