diff options
Diffstat (limited to 'src/api/endpoints/posts')
| -rw-r--r-- | src/api/endpoints/posts/mentions.js | 2 |
1 files changed, 1 insertions, 1 deletions
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; |