From f7f5232e216cbbeddd287a85852702f37d928c0b Mon Sep 17 00:00:00 2001 From: Romain J Date: Sat, 24 Apr 2021 23:01:10 +0200 Subject: [PATCH] fix(commands:iplocalise|Network): prevent discord to not include :: to links --- tuxbot/cogs/Network/network.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tuxbot/cogs/Network/network.py b/tuxbot/cogs/Network/network.py index b503d21..76e3962 100644 --- a/tuxbot/cogs/Network/network.py +++ b/tuxbot/cogs/Network/network.py @@ -171,7 +171,7 @@ class Network(commands.Cog): kwargs["embed"] = e - return await ctx.send(f"https://ipinfo.io/[{ip_address}]", **kwargs) + return await ctx.send(f"https://ipinfo.io/{ip_address}#", **kwargs) @command_extra( name="cloudflare", aliases=["cf", "crimeflare"], deletable=True