This commit is contained in:
syuilo 2018-11-09 03:52:03 +09:00
parent 4bc919a912
commit f05a688ac2
No known key found for this signature in database
GPG Key ID: BDC4C49D06AB9D69
1 changed files with 2 additions and 6 deletions

View File

@ -47,13 +47,9 @@ export default define(meta, (ps, user) => new Promise(async (res, rej) => {
} }
// Delete reaction // Delete reaction
await Reaction.update({ await Reaction.remove({
_id: exist._id _id: exist._id
}, { });
$set: {
deletedAt: new Date()
}
});
res(); res();