diff --git a/src/cogs/net.py b/src/cogs/net.py index 2a2000c..b2ec1a6 100644 --- a/src/cogs/net.py +++ b/src/cogs/net.py @@ -512,6 +512,9 @@ class NetworkCog(commands.Cog): if parsed.netloc in ("x.com", "twitter.com"): parsed = parsed._replace(netloc="fixupx.com") new_links.append(parsed.geturl()) + elif parsed.netloc in ("tiktok.com", "vm.tiktok.com"): + parsed = parsed._replace(netloc="vxtiktok.com") + new_links.append(parsed.geturl()) if new_links: if len(content) == 1: # just link await message.delete(delay=0.1, reason="Fixed twitter link")