From 8d5744c23dc3809917e21b4d58cd93761109d0cb Mon Sep 17 00:00:00 2001 From: nexy7574 Date: Sun, 14 Apr 2024 19:48:30 +0100 Subject: [PATCH] Fix responding with raw embed array --- cogs/other.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/other.py b/cogs/other.py index 8fd94de..d426780 100644 --- a/cogs/other.py +++ b/cogs/other.py @@ -614,7 +614,7 @@ class OtherCog(commands.Cog): if not embeds: return await ctx.respond(":x: No images found in message.", delete_after=30) else: - return await ctx.respond(embeds) + return await ctx.respond(embeds=embeds) @commands.message_command(name="Convert Image to GIF") async def convert_image_to_gif(self, ctx: discord.ApplicationContext, message: discord.Message):