diff --git a/src/services/note/watch.ts b/src/services/note/watch.ts
index 28fb7a32c2..aad53610d8 100644
--- a/src/services/note/watch.ts
+++ b/src/services/note/watch.ts
@@ -10,8 +10,7 @@ export default async (me: mongodb.ObjectID, note: object) => {
 	// if watching now
 	const exist = await Watching.findOne({
 		noteId: (note as any)._id,
-		userId: me,
-		deletedAt: { $exists: false }
+		userId: me
 	});
 
 	if (exist !== null) {