diff --git a/theHarvester/lib/core.py b/theHarvester/lib/core.py index b51db7b5..5efbf825 100644 --- a/theHarvester/lib/core.py +++ b/theHarvester/lib/core.py @@ -434,7 +434,7 @@ async def fetch(session, url, params='', json=False, proxy="") -> Union[str, dic async with session.get(url, params=params, proxy=proxy) as response: return await response.text() if json is False else await response.json() else: - async with session.get(url, proxy=proxy) as response: + async with session.get(url) as response: await asyncio.sleep(2) return await response.text() if json is False else await response.json()