fix: Update embed footer to remove URL and improve clarity

This commit is contained in:
Slipstream 2025-05-19 19:17:23 -06:00
parent b6cc472eee
commit a4843dbfc2
Signed by: slipstream
GPG Key ID: 13E498CE010AC6FD

View File

@ -21,10 +21,11 @@ class TetoImageCog(commands.Cog):
if image_url:
embed = discord.Embed(
title="Random Teto Image",
description=f"Website: {self.footer_url}",
color=discord.Color.red()
)
embed.set_image(url=image_url)
embed.set_footer(text="Random Teto Image Website", icon_url=None, url=self.footer_url)
embed.set_footer(text="Random Teto Image Website", icon_url=None)
await ctx.send(embed=embed)
else:
await ctx.send("Could not get the image URL from the redirect.")