Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ object JsonSupport {
val nestedDataFieldName = atomType.toLowerCase

//Special case for commonsDivision because the scrooge enum value loses the casing
if (data(nestedDataFieldName).nonEmpty || nestedDataFieldName == "commonsdivision") c.value
if (data(nestedDataFieldName).nonEmpty || nestedDataFieldName == "commonsdivision" || nestedDataFieldName == "tempfootballcompetition") c.value
else {
//Add the union type name under `data`
val newData = JsonObject.fromIterable(Seq(nestedDataFieldName -> dataJson))
Expand Down
2 changes: 1 addition & 1 deletion project/BuildVars.scala
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import sbt._

object BuildVars {
lazy val awsVersion = "1.12.680"
lazy val contentAtomVersion = "12.0.1"
lazy val contentAtomVersion = "12.1.0-PREVIEW.add-new-atom-for-match-day.2026-07-15T1141.302c1611"
lazy val scroogeVersion = "22.1.0"
lazy val playVersion = "3.0.10"
lazy val mockitoVersion = "4.11.0"
Expand Down
Loading