pull/1486/head
gedoor 3 years ago
parent 45e664d4d0
commit fd1a1ae9b8
  1. 4
      app/src/main/java/io/legado/app/ui/association/OnLineImportViewModel.kt

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

Loading…
Cancel
Save