From 95a68340f94e0d0d5e9970c5596f5d1ab2496c9f Mon Sep 17 00:00:00 2001
From: tamaina <tamaina@hotmail.co.jp>
Date: Sat, 18 Aug 2018 21:57:21 +0900
Subject: [PATCH] missing semicolon

---
 src/mfm/html-to-mfm.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/mfm/html-to-mfm.ts b/src/mfm/html-to-mfm.ts
index e8b156495..084578fc1 100644
--- a/src/mfm/html-to-mfm.ts
+++ b/src/mfm/html-to-mfm.ts
@@ -51,7 +51,7 @@ export default function(html: string): string {
 					}
 				// メンション以外
 				} else {
-					text += `[${txt}](${node.attrs.find((x: any) => x.name == 'href').value})`
+					text += `[${txt}](${node.attrs.find((x: any) => x.name == 'href').value})`;
 				}
 
 				if (node.childNodes) {