fix(commands:getheaders|Network): fix timeout
This commit is contained in:
parent
64fba7fec6
commit
22c5ee57d4
1 changed files with 1 additions and 1 deletions
|
@ -148,7 +148,7 @@ class Network(commands.Cog):
|
||||||
async with ctx.session.get(
|
async with ctx.session.get(
|
||||||
str(ip),
|
str(ip),
|
||||||
headers=headers,
|
headers=headers,
|
||||||
timeout=aiohttp.ClientTimeout(total=4),
|
timeout=aiohttp.ClientTimeout(total=8),
|
||||||
) as s:
|
) as s:
|
||||||
e = discord.Embed(
|
e = discord.Embed(
|
||||||
title=f"Headers : {ip}",
|
title=f"Headers : {ip}",
|
||||||
|
|
Loading…
Reference in a new issue