From 3e19edf70ac37a817125ad819db6671cd190075d Mon Sep 17 00:00:00 2001 From: Luke Robles Date: Mon, 20 Sep 2021 18:57:58 -0700 Subject: [PATCH] Mention the author that uploaded 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 a4ced868..5fc46582 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(ctx.content, file=discord.File(jpg_file)) + await ctx.channel.send("%s said:\n%s" % (ctx.author.mention, ctx.content), file=discord.File(jpg_file)) return