mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-15 06:27:34 -07:00
parent
834e360234
commit
e562b477b6
1 changed files with 4 additions and 0 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue