fix(speedtest): fixed two keyerrors
This commit is contained in:
parent
c2333f40ef
commit
eb41c1a72b
1 changed files with 1 additions and 1 deletions
|
@ -62,7 +62,7 @@ class Speedtest(commands.Cog):
|
|||
return
|
||||
embed = discord.Embed(title="Speedtest Results", url=r["result"]["url"], color=await ctx.embed_color())
|
||||
embed.add_field(name="Bandwidth", value=f"{r['download']['bandwidth'] / 1_000_000:.2f} Mbps down, {r['upload']['bandwidth'] / 1_000_000:.2f} Mbps up")
|
||||
embed.add_field(name="Ping", value=f"Base: {round(r['ping']['latency'])} ms \nDownload: {round(r['download']['latency']['igm'])} ms \nUpload: {round(r['upload']['latency']['igm'])} ms")
|
||||
embed.add_field(name="Ping", value=f"Base: {round(r['ping']['latency'])} ms \nDownload: {round(r['download']['latency']['iqm'])} ms \nUpload: {round(r['upload']['latency']['iqm'])} ms")
|
||||
embed.set_image(url=r["result"]["image"] + ".png")
|
||||
await msg.edit(embed=embed)
|
||||
else:
|
||||
|
|
Loading…
Reference in a new issue