From 36e3894f88a1cc20f68928dcef5ac829e3548f1a Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Mon, 29 Jun 2020 13:53:02 -0400 Subject: [PATCH] Fix --- commands/edit-image/magik.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/edit-image/magik.js b/commands/edit-image/magik.js index 5a3ec743..f4d5e20a 100644 --- a/commands/edit-image/magik.js +++ b/commands/edit-image/magik.js @@ -31,7 +31,7 @@ module.exports = class MagikCommand extends Command { const { body } = await request.get(image); const magik = gm(body); magik.out('-liquid-rescale'); - magik.out('50%x50%') + magik.out('50%x50%'); magik.implode(0.25); magik.setFormat('png'); const attachment = await this.toBuffer(magik);