Skip to content

Commit

Permalink
fix for cases where the license url is null
Browse files Browse the repository at this point in the history
  • Loading branch information
NotJansel committed Aug 5, 2024
1 parent 88f54ee commit 9f70664
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ fun String.runCommand(
group = "org.hyacinthbots.allium"
//version = "0.7-build.local-" + "git rev-parse --short=8 HEAD".runCommand(workingDir = rootDir) + "-" + "git branch --show-current".runCommand(workingDir = rootDir).replace("/", ".")
var buildTime = Date().time / 1000
version = "0.6.5"
version = "0.6.6"
// The current LTS Java version
val javaVersion = 21

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,7 @@ class Modrinth : Extension() {
data class DirectLicenseData(
val id: String,
val name: String,
val url: String
val url: String?
)

@Serializable
Expand Down

0 comments on commit 9f70664

Please sign in to comment.