Skip to content

Commit

Permalink
fix relay_tour compat
Browse files Browse the repository at this point in the history
  • Loading branch information
ornicar committed Jun 16, 2024
1 parent e64b23b commit cc93e45
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/relay/src/main/RelayTour.scala
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ case class RelayTour(
createdAt: Instant,
tier: Option[RelayTour.Tier], // if present, it's an official broadcast
active: Boolean, // a round is scheduled or ongoing
ongoing: Boolean, // a round is ongoing
ongoing: Option[Boolean], // a round is ongoing
syncedAt: Option[Instant], // last time a round was synced
spotlight: Option[RelayTour.Spotlight] = None,
autoLeaderboard: Boolean = true,
Expand Down
2 changes: 1 addition & 1 deletion modules/relay/src/main/RelayTourForm.scala
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ object RelayTourForm:
ownerId = me,
tier = tier.ifTrue(Granter(_.Relay)),
active = false,
ongoing = false,
ongoing = none,
createdAt = nowInstant,
syncedAt = none,
autoLeaderboard = autoLeaderboard,
Expand Down

0 comments on commit cc93e45

Please sign in to comment.