disable embed

This commit is contained in:
user
2025-07-15 22:47:51 -04:00
parent 98db3a2cc8
commit 1941eeb75c

View File

@@ -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.")