diff --git a/main.py b/main.py index b60b5c3..2cdb1a3 100644 --- a/main.py +++ b/main.py @@ -75,7 +75,7 @@ async def on_message(message): for word in message.content.split(): if word.startswith(("http://", "https://")) and (cleaned := clean_url(word)): - await message.channel.send(f"Cleaned link: {cleaned}") + await message.channel.send(f"Cleaned link: <{cleaned}>") break @@ -109,7 +109,7 @@ async def bomb(interaction: discord.Interaction): if word.startswith(("http://", "https://")) and ( cleaned := clean_url(word) ): - await interaction.response.send_message(f"Cleaned link: {cleaned}") + await interaction.response.send_message(f"Cleaned link: <{cleaned}>") return await interaction.response.send_message("No links found.")