From 2f6b8050275833c94b40950b627d4499b1d24583 Mon Sep 17 00:00:00 2001 From: Will Hunt <will@half-shot.uk> Date: Mon, 19 Feb 2018 16:55:01 +0000 Subject: [PATCH] Fix linter being upset about line length. --- src/messageprocessor.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/messageprocessor.ts b/src/messageprocessor.ts index b02e07d..5788236 100644 --- a/src/messageprocessor.ts +++ b/src/messageprocessor.ts @@ -94,7 +94,8 @@ export class MessageProcessor { const id = results[1]; try { const mxcUrl = await this.bot.GetGuildEmoji(msg.guild, id); - content = content.replace(results[0], `<img alt="${id}" src="${mxcUrl}" style="height: ${EMOJI_SIZE};"/>`); + content = content.replace(results[0], + `<img alt="${id}" src="${mxcUrl}" style="height: ${EMOJI_SIZE};"/>`); } catch (ex) { log.warn("MessageProcessor", `Could not insert emoji ${id} for msg ${msg.id} in guild ${msg.guild.id}: ${ex}`, -- GitLab