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) {