diff options
Diffstat (limited to 'src/api/endpoints/posts/reactions/create.ts')
| -rw-r--r-- | src/api/endpoints/posts/reactions/create.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/endpoints/posts/reactions/create.ts b/src/api/endpoints/posts/reactions/create.ts index 7cae3830e0..eecb928123 100644 --- a/src/api/endpoints/posts/reactions/create.ts +++ b/src/api/endpoints/posts/reactions/create.ts @@ -111,5 +111,5 @@ module.exports = (params, user) => new Promise(async (res, rej) => { // この投稿をWatchする // TODO: ユーザーが「リアクションしたときに自動でWatchする」設定を // オフにしていた場合はしない - watch(user._id, post._id); + watch(user._id, post); }); |