Skip to content

Commit

Permalink
Fix JSON type of "spec" field in installer profile JSON (#1723) (#1727)
Browse files Browse the repository at this point in the history
  • Loading branch information
shartte authored Dec 3, 2024
1 parent 2c7c3f2 commit 731d226
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ public void createInstallerProfile() throws IOException {
))));

var profile = new InstallerProfile(
"1",
1,
"NeoForge",
"neoforge-%s".formatted(getNeoForgeVersion().get()),
icon,
Expand All @@ -203,7 +203,7 @@ public void createInstallerProfile() throws IOException {
}

record InstallerProfile(
String spec,
int spec,
String profile,
String version,
String icon,
Expand Down

0 comments on commit 731d226

Please sign in to comment.