From 03f20599ba9d192b0c7de391af5d23b63168f18e Mon Sep 17 00:00:00 2001
From: syuilo <syuilotan@yahoo.co.jp>
Date: Sun, 17 Jun 2018 07:39:51 +0900
Subject: [PATCH] Add missing semicolon

---
 src/remote/activitypub/renderer/note.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/remote/activitypub/renderer/note.ts b/src/remote/activitypub/renderer/note.ts
index 39335a7cca..06956fd23f 100644
--- a/src/remote/activitypub/renderer/note.ts
+++ b/src/remote/activitypub/renderer/note.ts
@@ -56,7 +56,7 @@ export default async function renderNote(note: INote, dive = true) {
 
 	const hashtagTags = (note.tags || []).map(renderHashtag);
 	const mentionTags = (note.mentionedRemoteUsers || []).map(renderMention);
-	const tag = hashtagTags.concat(mentionTags)
+	const tag = hashtagTags.concat(mentionTags);
 
 	return {
 		id: `${config.url}/notes/${note._id}`,