From 37bbbc891d856100c38a3d658816ddfc2d465cc4 Mon Sep 17 00:00:00 2001 From: Luke Robles Date: Fri, 18 Apr 2025 12:41:12 -0700 Subject: [PATCH] change wording on heic converstion --- app/bot.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/bot.py b/app/bot.py index 670c71a3..c84dd521 100755 --- a/app/bot.py +++ b/app/bot.py @@ -84,7 +84,8 @@ async def convert_heic_to_jpg(ctx): except Exception: pass await ctx.channel.send( - "%s said:\n%s" % (ctx.author.mention, ctx.content), + "%s uplodaed a file that discord cant natively embed, so I converted it to a jpg:\n%s" + % (ctx.author.mention, ctx.content), file=discord.File(jpg_file), ) os.remove(file_path)