削除された投稿にリアクションできないように

Closes #1778
This commit is contained in:
syuilo 2018-09-10 01:55:14 +09:00
parent e07210524f
commit 1344ffa67d
No known key found for this signature in database
GPG Key ID: BDC4C49D06AB9D69
1 changed files with 4 additions and 0 deletions

View File

@ -43,6 +43,10 @@ export default (params: any, user: ILocalUser) => new Promise(async (res, rej) =
return rej('note not found');
}
if (note.deletedAt != null) {
return rej('this not is already deleted');
}
try {
await create(user, note, ps.reaction);
} catch (e) {