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