This commit is contained in:
Cloudburst 2021-08-17 15:23:54 +02:00
commit d167c9a3cb
1 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,7 @@ class InAppUpdater {
@JsonProperty("body") val body: String, // Desc
@JsonProperty("assets") val assets: List<GithubAsset>,
@JsonProperty("target_commitish") val target_commitish: String, // branch
@JsonProperty("prerelease") var prerelease: Boolean,
@JsonProperty("prerelease") val prerelease: Boolean,
)
data class GithubObject(
@ -293,4 +293,4 @@ class InAppUpdater {
return false
}
}
}
}