From 1eb8d27d7e5f46aa38938750d2eeb1ebc08685f3 Mon Sep 17 00:00:00 2001 From: Luke Robles Date: Wed, 15 Sep 2021 08:42:05 -0700 Subject: [PATCH] Retain the message sent with an heic file --- app/bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/bot.py b/app/bot.py index 7ca31da2..a4ced868 100755 --- a/app/bot.py +++ b/app/bot.py @@ -71,7 +71,7 @@ async def convert_heic_to_jpg(ctx): img.save(filename=jpg_file) img.close() await ctx.delete() - await ctx.channel.send(file=discord.File(jpg_file)) + await ctx.channel.send(ctx.content, file=discord.File(jpg_file)) return