Update read.ts

This commit is contained in:
syuilo 2019-04-15 12:11:32 +09:00
parent b357afa30a
commit 64b331c5b2
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69

View file

@ -11,15 +11,15 @@ export default (
noteId: Note['id']
) => new Promise<any>(async (resolve, reject) => {
// Remove document
const res = await NoteUnreads.delete({
/*const res = */await NoteUnreads.delete({
userId: userId,
noteId: noteId
});
// v11 TODO: https://github.com/typeorm/typeorm/issues/2415
if (res.affected == 0) {
return;
}
//if (res.affected == 0) {
// return;
//}
const count1 = await NoteUnreads.count({
userId: userId,