diff --git a/jarvis/cogs/image.py b/jarvis/cogs/image.py index 6247323..5f633e8 100644 --- a/jarvis/cogs/image.py +++ b/jarvis/cogs/image.py @@ -67,7 +67,7 @@ class ImageCog(commands.Cog): new_img = cv2.resize(img, (width, height)) buffer = cv2.imencode(".png", new_img)[1].tobytes() bufio = BytesIO(buffer) - await ctx.send(file=File(bufio)) + await ctx.send(file=File(bufio, filename="resized.png")) def setup(bot):