diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2018-12-20 02:47:24 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-12-20 02:47:24 +0900 |
| commit | b545be5799df2ced7a6e39918df73d8407f38b34 (patch) | |
| tree | bee099659fc71fef88b33c248b7dcb48a88f7716 /src/server/api/endpoints/users | |
| parent | Fix tag length limit from AP (#3688) (diff) | |
| download | sharkey-b545be5799df2ced7a6e39918df73d8407f38b34.tar.gz sharkey-b545be5799df2ced7a6e39918df73d8407f38b34.tar.bz2 sharkey-b545be5799df2ced7a6e39918df73d8407f38b34.zip | |
Fix wrong comment
Diffstat (limited to 'src/server/api/endpoints/users')
| -rw-r--r-- | src/server/api/endpoints/users/lists/pull.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/api/endpoints/users/lists/pull.ts b/src/server/api/endpoints/users/lists/pull.ts index 6b755ca88f..f1b25127b3 100644 --- a/src/server/api/endpoints/users/lists/pull.ts +++ b/src/server/api/endpoints/users/lists/pull.ts @@ -51,7 +51,7 @@ export default define(meta, (ps, me) => new Promise(async (res, rej) => { return rej('user not found'); } - // Push the user + // Pull the user await UserList.update({ _id: userList._id }, { $pull: { userIds: user._id |