This commit is contained in:
kunfei
2022-05-09 20:15:15 +08:00
parent 5e7360c8bf
commit f1ad8cb94d
@@ -65,11 +65,11 @@ abstract class BaseAssociationViewModel(application: Application) : BaseViewMode
if (json.isJsonArray()) {
GSON.fromJsonArray<ThemeConfig.Config>(json).getOrThrow()?.forEach {
ThemeConfig.addConfig(it)
} ?: throw NoStackTraceException("格式不对")
}
} else {
GSON.fromJsonObject<ThemeConfig.Config>(json).getOrThrow()?.let {
ThemeConfig.addConfig(it)
} ?: throw NoStackTraceException("格式不对")
}
}
}.onSuccess {
finally.invoke(context.getString(R.string.success), "导入主题成功")