diff options
| author | こぴなたみぽ <Syuilotan@yahoo.co.jp> | 2017-11-06 19:09:41 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-11-06 19:09:41 +0900 |
| commit | 2099f494d7662a9298c6b3d9d2fe5488872f8ae1 (patch) | |
| tree | d552a0b58a07b82e842715f4dbd22380ae0007be /src/api/endpoints/posts.ts | |
| parent | chore(package): update @types/multer to version 1.3.5 (diff) | |
| parent | Merge pull request #710 from syuilo/greenkeeper/@types/bcryptjs-2.4.1 (diff) | |
| download | misskey-2099f494d7662a9298c6b3d9d2fe5488872f8ae1.tar.gz misskey-2099f494d7662a9298c6b3d9d2fe5488872f8ae1.tar.bz2 misskey-2099f494d7662a9298c6b3d9d2fe5488872f8ae1.zip | |
Merge branch 'master' into greenkeeper/@types/multer-1.3.5
Diffstat (limited to 'src/api/endpoints/posts.ts')
| -rw-r--r-- | src/api/endpoints/posts.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/endpoints/posts.ts b/src/api/endpoints/posts.ts index 23b9bd0b66..f6efcc108d 100644 --- a/src/api/endpoints/posts.ts +++ b/src/api/endpoints/posts.ts @@ -62,7 +62,7 @@ module.exports = (params) => new Promise(async (res, rej) => { } if (reply != undefined) { - query.reply_to_id = reply ? { $exists: true, $ne: null } : null; + query.reply_id = reply ? { $exists: true, $ne: null } : null; } if (repost != undefined) { |