修复bug

This commit is contained in:
gedoor 2021-12-23 11:34:33 +08:00
parent 45e664d4d0
commit fd1a1ae9b8

View File

@ -159,11 +159,11 @@ class OnLineImportViewModel(app: Application) : BaseViewModel(app) {
json.contains("replacement") ->
successLive.postValue(Pair("replaceRule", json))
json.contains("themeName") ->
importTextTocRule(json, finally)
importTheme(json, finally)
json.contains("name") && json.contains("rule") ->
importTextTocRule(json, finally)
json.contains("name") && json.contains("url") ->
importTextTocRule(json, finally)
importHttpTTS(json, finally)
else -> errorLive.postValue("格式不对")
}
}