From 6ae39244eb8af387de9750dd7de149d460199b60 Mon Sep 17 00:00:00 2001 From: syuilo 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);