Compare commits

...

2 Commits

Author SHA1 Message Date
KOBA789 f4d4a45b63
Merge 0de1e59b98 into 7d7a12d7d6 2024-09-16 11:48:37 +00:00
Hidekazu Kobayashi 0de1e59b98 Fix typo :) 2024-09-16 11:48:25 +00:00
1 changed files with 1 additions and 1 deletions

View File

@ -1045,7 +1045,7 @@ export class NoteCreateService implements OnApplicationShutdown {
}
@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);
}