Skip to content

Commit

Permalink
fix(match2): tournament enddate not inherited
Browse files Browse the repository at this point in the history
  • Loading branch information
hjpalpha authored Sep 26, 2024
1 parent 9ce6a58 commit d23cf72
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ function CustomMatchGroupInput.processMatch(match, options)
local finishedInput = match.finished --[[@as string?]]
local winnerInput = match.winner --[[@as string?]]

Table.mergeInto(match, MatchGroupInputUtil.readDate(match.date))
Table.mergeInto(match, MatchGroupInputUtil.readDate(match.date, {'tournament_enddate'}))

local opponents = Array.mapIndexes(function(opponentIndex)
return MatchGroupInputUtil.readOpponent(match, opponentIndex, {})
Expand Down

0 comments on commit d23cf72

Please sign in to comment.