fix: miss supportUri

This commit is contained in:
lisonge 2023-09-11 21:25:27 +08:00
parent 884d7b044e
commit 37df013259

View File

@ -306,7 +306,7 @@ data class SubscriptionRaw(
version = getInt(rootJson, "version") ?: error("miss subscription.version"),
author = getString(rootJson, "author"),
updateUrl = getString(rootJson, "updateUrl"),
supportUri = getString(rootJson, "supportUrl"),
supportUri = getString(rootJson, "supportUri"),
apps = rootJson["apps"]?.jsonArray?.mapIndexed { index, jsonElement ->
jsonToAppRaw(
jsonElement.jsonObject, index