From f59d0a75e4f75d56b9d1afb50b924e36109ef985 Mon Sep 17 00:00:00 2001 From: tamaina Date: Sat, 18 Aug 2018 21:58:00 +0900 Subject: [PATCH] missing semicolon --- src/mfm/html.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mfm/html.ts b/src/mfm/html.ts index c53542ac8..1544ac34f 100644 --- a/src/mfm/html.ts +++ b/src/mfm/html.ts @@ -80,7 +80,7 @@ const handlers: { [key: string]: (window: any, token: any, mentionedRemoteUsers: }, text({ document }, { content }) { - const t = content.split('\n') + const t = content.split('\n'); for (let i = 0; i < t.length; i++) { document.body.appendChild(document.createTextNode(t[i])); if (i != t.length - 1) {