Fix: Remove Configuration Caching to fix building & some renaming

This commit is contained in:
LooKeR
2021-12-28 13:37:48 +05:30
parent fc9529a389
commit f090b506fe
3 changed files with 7 additions and 8 deletions

View File

@ -153,9 +153,9 @@ object IndexV1Parser {
it.string("openCollective") -> donates += Product.Donate.OpenCollective(
valueAsString
)
it.dictionary("localized") -> forEachKey { it ->
if (it.token == JsonToken.START_OBJECT) {
val locale = it.key
it.dictionary("localized") -> forEachKey { keyToken ->
if (keyToken.token == JsonToken.START_OBJECT) {
val locale = keyToken.key
var name = ""
var summary = ""
var description = ""