Skip to content

Commit

Permalink
Merge pull request #43 from overthestream/renewal
Browse files Browse the repository at this point in the history
Renewal
  • Loading branch information
overthestream authored Oct 13, 2024
2 parents 8a2daa8 + 8a3ea3c commit 392b656
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/domain/blurting/blurting.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -275,13 +275,13 @@ export class BlurtingService {
if (groupQueue.includes(user.id)) {
return State.Matching;
}
if (user.group && (await this.checkPartOver(user.group.id))) {
if (user.group != null && (await this.checkPartOver(user.group.id))) {
return State.Arrowing;
}
if (user.group && this.checkGroupOver(user.group.id)) {
if (user.group != null && (await this.checkGroupOver(user.group.id))) {
return State.Blurting;
}
if (user.group) {
if (user.group != null) {
return State.End;
}
return State.Start;
Expand Down

0 comments on commit 392b656

Please sign in to comment.