fix: 书源解析获取内容

pull/95/head
kunfei 5 years ago
parent 7ba863cbe2
commit 3ff98e534b
  1. 9
      app/src/main/java/io/legado/app/model/analyzeRule/AnalyzeRule.kt

@ -117,9 +117,12 @@ class AnalyzeRule(var book: BaseBook? = null) : JsExtensions {
@Throws(Exception::class)
fun getStringList(ruleList: List<SourceRule>, isUrl: Boolean = false): List<String>? {
var result: Any? = null
content?.let { o ->
if (ruleList.isNotEmpty()) {
if (ruleList.isNotEmpty()) result = o
val content = this.content
if (content != null && ruleList.isNotEmpty()) {
result = content
if (content is NativeObject) {
result = content[ruleList[0].rule]?.toString()
} else {
for (sourceRule in ruleList) {
putRule(sourceRule.putMap)
sourceRule.makeUpRule(result)

Loading…
Cancel
Save