From a51c9c72642554c2944212ec10acd7b9098f0041 Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Fri, 8 Feb 2019 16:47:29 +0000 Subject: [PATCH] fix --- commands/image-edit/meme-gen.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/image-edit/meme-gen.js b/commands/image-edit/meme-gen.js index 718fb383..98faaefa 100644 --- a/commands/image-edit/meme-gen.js +++ b/commands/image-edit/meme-gen.js @@ -60,7 +60,7 @@ module.exports = class MemeGenCommand extends Command { ctx.lineWidth = 8; ctx.strokeText(topLines[i], base.width / 2, textHeight); ctx.fillStyle = 'white'; - ctx.fillText(bottomLines[i], base.width / 2, textHeight); + ctx.fillText(topLines[i], base.width / 2, textHeight); } const bottomLines = await wrapText(ctx, bottom, base.width - 10); ctx.textBaseline = 'bottom';