From 9f02d2d1b8f57e0adaab1f8068982606b0d1e71f Mon Sep 17 00:00:00 2001 From: syuilo Date: Thu, 16 Feb 2017 14:34:11 +0900 Subject: [API] Fix bugs --- src/api/endpoints/posts/mentions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/api/endpoints/posts') diff --git a/src/api/endpoints/posts/mentions.js b/src/api/endpoints/posts/mentions.js index dbb69bd5ac..7377e3523b 100644 --- a/src/api/endpoints/posts/mentions.js +++ b/src/api/endpoints/posts/mentions.js @@ -19,7 +19,7 @@ module.exports = (params, user) => new Promise(async (res, rej) => { // Get 'following' parameter - const following = params.following === 'true'; + const following = params.following; // Get 'limit' parameter let limit = params.limit; -- cgit v1.2.3-freya