This commit is contained in:
syuilo 2018-07-27 07:29:24 +09:00
parent 286da28cd6
commit bfd8b12a4f
1 changed files with 1 additions and 2 deletions

View File

@ -10,8 +10,7 @@ export default async (me: mongodb.ObjectID, note: object) => {
// if watching now // if watching now
const exist = await Watching.findOne({ const exist = await Watching.findOne({
noteId: (note as any)._id, noteId: (note as any)._id,
userId: me, userId: me
deletedAt: { $exists: false }
}); });
if (exist !== null) { if (exist !== null) {