fix(commands:iplocalise|Network): prevent discord to not include :: to links
This commit is contained in:
parent
32b6de0d0f
commit
f7f5232e21
1 changed files with 1 additions and 1 deletions
|
@ -171,7 +171,7 @@ class Network(commands.Cog):
|
||||||
|
|
||||||
kwargs["embed"] = e
|
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(
|
@command_extra(
|
||||||
name="cloudflare", aliases=["cf", "crimeflare"], deletable=True
|
name="cloudflare", aliases=["cf", "crimeflare"], deletable=True
|
||||||
|
|
Loading…
Reference in a new issue