summaryrefslogtreecommitdiff
path: root/src/api/endpoints
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2017-01-21 15:30:40 +0900
committersyuilo <syuilotan@yahoo.co.jp>2017-01-21 15:30:40 +0900
commit6ae39244eb8af387de9750dd7de149d460199b60 (patch)
treef67e67c9f21bc210ed7a58acf50721b6e037281a /src/api/endpoints
parent[Server] Fix bug (diff)
downloadsharkey-6ae39244eb8af387de9750dd7de149d460199b60.tar.gz
sharkey-6ae39244eb8af387de9750dd7de149d460199b60.tar.bz2
sharkey-6ae39244eb8af387de9750dd7de149d460199b60.zip
Fix: Add missing semicolon
Diffstat (limited to 'src/api/endpoints')
-rw-r--r--src/api/endpoints/i/update.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/endpoints/i/update.js b/src/api/endpoints/i/update.js
index 0306a106e0..aca2afe77e 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);