From 92cd0b1eaeb08fc382118efcf1be84f157486571 Mon Sep 17 00:00:00 2001 From: Zevaryx Date: Sun, 1 May 2022 10:39:31 -0600 Subject: [PATCH] Set git image to thumbnail, not image --- jarvis/cogs/botutil.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jarvis/cogs/botutil.py b/jarvis/cogs/botutil.py index a95a89e..3b901d4 100644 --- a/jarvis/cogs/botutil.py +++ b/jarvis/cogs/botutil.py @@ -200,7 +200,7 @@ class BotutilCog(Scale): embed = build_embed( "Update Status", description="Updates have been applied", fields=fields ) - embed.set_image(url="https://dev.zevaryx.com/git.png") + embed.set_thumbnail(url="https://dev.zevaryx.com/git.png") self.logger.info("Updates applied") try: @@ -211,7 +211,7 @@ class BotutilCog(Scale): else: embed = build_embed(title="Update Status", description="No changes applied", fields=[]) embed.set_footer(text=current_hash) - embed.set_image(url="https://dev.zevaryx.com/git.png") + embed.set_thumbnail(url="https://dev.zevaryx.com/git.png") await ctx.reply(embed=embed)