From ddc2dcc11de0ce9ddecdec60dee792fc26863a75 Mon Sep 17 00:00:00 2001
From: syuilo <syuilotan@yahoo.co.jp>
Date: Tue, 31 Jan 2017 23:51:02 +0900
Subject: [PATCH] Fix: Add missing semicolon

---
 src/api/service/twitter.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/api/service/twitter.ts b/src/api/service/twitter.ts
index eb3531d86..160956cf9 100644
--- a/src/api/service/twitter.ts
+++ b/src/api/service/twitter.ts
@@ -73,6 +73,6 @@ module.exports = (app: express.Application) => {
 				detail: true,
 				includeSecrets: true
 			}));
-		})
+		});
 	});
 };