Fix typo :)

This commit is contained in:
Hidekazu Kobayashi 2024-09-16 11:48:25 +00:00
parent 51d76115a4
commit 0de1e59b98
1 changed files with 1 additions and 1 deletions

View File

@ -1045,7 +1045,7 @@ export class NoteCreateService implements OnApplicationShutdown {
} }
@bindThis @bindThis
private async async performUpdateNotesCount(id: MiNote['id'], incrBy: number) { private async performUpdateNotesCount(id: MiNote['id'], incrBy: number) {
await this.instancesRepository.increment({ id: id }, 'notesCount', incrBy); await this.instancesRepository.increment({ id: id }, 'notesCount', incrBy);
} }