diff options
| author | syuilo⭐️ <Syuilotan@yahoo.co.jp> | 2017-03-14 15:53:25 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-03-14 15:53:25 +0900 |
| commit | 9e8d4f61b287eb30acf9ce76d543e20479aa524f (patch) | |
| tree | bbe3bf08301109474bb849c997d71cf467ffe199 /src/api/endpoints/users | |
| parent | Fix bug (diff) | |
| download | sharkey-9e8d4f61b287eb30acf9ce76d543e20479aa524f.tar.gz sharkey-9e8d4f61b287eb30acf9ce76d543e20479aa524f.tar.bz2 sharkey-9e8d4f61b287eb30acf9ce76d543e20479aa524f.zip | |
typo
Diffstat (limited to 'src/api/endpoints/users')
| -rw-r--r-- | src/api/endpoints/users/recommendation.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/endpoints/users/recommendation.ts b/src/api/endpoints/users/recommendation.ts index a096261e58..731d68a7b1 100644 --- a/src/api/endpoints/users/recommendation.ts +++ b/src/api/endpoints/users/recommendation.ts @@ -23,7 +23,7 @@ module.exports = (params, me) => new Promise(async (res, rej) => { const [offset = 0, offsetErr] = $(params.offset).optional.number().min(0).$; if (offsetErr) return rej('invalid offset param'); - // ID list of the user $self and other users who the user follows + // ID list of the user itself and other users who the user follows const followingIds = await getFriends(me._id); const users = await User |