From b702b65cf6f69840bc90915a3e6ac2e484d67d78 Mon Sep 17 00:00:00 2001 From: syuilo <syuilotan@yahoo.co.jp> Date: Sat, 21 Jan 2017 15:30:40 +0900 Subject: [PATCH] Fix: Add missing semicolon --- src/api/endpoints/i/update.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/endpoints/i/update.js b/src/api/endpoints/i/update.js index 0306a106e..aca2afe77 100644 --- a/src/api/endpoints/i/update.js +++ b/src/api/endpoints/i/update.js @@ -80,7 +80,7 @@ module.exports = async (params, user, _, isSecure) => const iObj = await serialize(user, user, { detail: true, includeSecrets: isSecure - }) + }); // Send response res(iObj);