mirror of
https://github.com/hykilpikonna/AquaDX.git
synced 2026-05-12 23:30:39 -05:00
fix: 🚑 make data version fallback to v0 instead of v1
Some checks failed
Build and Publish Docker Image / build-and-push (push) Has been cancelled
Some checks failed
Build and Publish Docker Image / build-and-push (push) Has been cancelled
This commit is contained in:
parent
d0110d7f47
commit
e711921725
|
|
@ -353,7 +353,7 @@ fun ChusanController.chusanInit() {
|
|||
mapOf(
|
||||
"gameSetting" to mapOf(
|
||||
"romVersion" to "$version.00",
|
||||
"dataVersion" to (versionHelper.get(data["clientId"].toString()) ?: "$version.01"),
|
||||
"dataVersion" to (versionHelper.get(data["clientId"].toString()) ?: "$version.00"),
|
||||
"isMaintenance" to false,
|
||||
"requestInterval" to 0,
|
||||
"rebootStartTime" to now.minusHours(4).format(fmt),
|
||||
|
|
@ -451,4 +451,4 @@ fun ChusanController.chusanInit() {
|
|||
"UpsertClientGameStart" static { """{"returnCode":1, "apiName":"UpsertClientGameStartApi"}""" }
|
||||
"UpsertClientGameEnd" static { """{"returnCode":1, "apiName":"UpsertClientGameEndApi"}""" }
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user