cleanup(ApQuestionService.ts)

This commit is contained in:
okayurisotto 2023-07-03 07:12:03 +09:00
parent f70fd08306
commit 279321e841

View File

@ -103,9 +103,7 @@ export class ApQuestionService {
}
}
await this.pollsRepository.update({ noteId: note.id }, {
votes: poll.votes,
});
await this.pollsRepository.update({ noteId: note.id }, { votes: poll.votes });
return changed;
}