diff --git a/gurt/cog.py b/gurt/cog.py index db24899..71c18d3 100644 --- a/gurt/cog.py +++ b/gurt/cog.py @@ -310,7 +310,7 @@ class GurtCog(commands.Cog, name="Gurt"): # Added explicit Cog name print(f"Generating description for sticker: {sticker.name} (ID: {sticker.id}) in guild ID {guild_id}") description_to_add = "No description generated." - if sticker.format == discord.StickerFormatType.png or sticker.format == discord.StickerFormatType.apng: + if sticker.format == discord.StickerFormatType.png or sticker.format == discord.StickerFormatType.apng or sticker.format == discord.StickerFormatType.gif: mime_type = "image/png" description = await api.generate_image_description(self, sticker_url, sticker.name, "sticker", mime_type) description_to_add = description or "No description generated."