Retain the message sent with an heic file

This commit is contained in:
Luke Robles 2021-09-15 08:42:05 -07:00
parent b4cccf0530
commit 1eb8d27d7e

View File

@ -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