Skip to content

Commit

Permalink
low
Browse files Browse the repository at this point in the history
  • Loading branch information
overthestream committed Aug 25, 2024
1 parent 3a735ee commit 8412641
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/domain/blurting/blurting.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -518,7 +518,7 @@ export class BlurtingService {
const question = await this.questionRepository.findLatestByGroup(
user.group.id,
);
const part = question.no / 3;
const part = Math.floor(question.no / 3);

const sendArrow = await this.arrowRepository.findFromId(
userId,
Expand Down

0 comments on commit 8412641

Please sign in to comment.