merge: lint
This commit is contained in:
commit
c50c3b3816
@ -68,7 +68,7 @@ export class NoteDeleteService {
|
||||
await this.notesRepository.decrement({ id: note.replyId }, 'repliesCount', 1);
|
||||
}
|
||||
|
||||
if (note.renoteId && note.renote?.userId != user.id && note.text == null && !note.hasPoll && (note.fileIds == null || note.fileIds.length === 0)) {
|
||||
if (note.renoteId && note.renote?.userId !== user.id && note.text == null && !note.hasPoll && (note.fileIds == null || note.fileIds.length === 0)) {
|
||||
await this.notesRepository.decrement({ id: note.renoteId }, 'renoteCount', 1);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user