enhance(backend): some tweaks
This commit is contained in:
parent
132b01461d
commit
87416710c3
4 changed files with 3 additions and 24 deletions
|
@ -64,11 +64,6 @@ export class NoteDeleteService {
|
|||
const deletedAt = new Date();
|
||||
const cascadingNotes = await this.findCascadingNotes(note);
|
||||
|
||||
// この投稿を除く指定したユーザーによる指定したノートのリノートが存在しないとき
|
||||
if (note.renoteId && (await this.noteEntityService.countSameRenotes(user.id, note.renoteId, note.id)) === 0) {
|
||||
this.notesRepository.decrement({ id: note.renoteId }, 'renoteCount', 1);
|
||||
}
|
||||
|
||||
if (note.replyId) {
|
||||
await this.notesRepository.decrement({ id: note.replyId }, 'repliesCount', 1);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue