From 7694e6f57cb065bf745ab23cdce799433c41f2bc Mon Sep 17 00:00:00 2001 From: kunfei Date: Fri, 15 Nov 2019 08:35:57 +0800 Subject: [PATCH] up --- .../java/io/legado/app/data/entities/rule/TocRule.kt | 1 - .../io/legado/app/model/webbook/BookChapterList.kt | 11 +---------- 2 files changed, 1 insertion(+), 11 deletions(-) diff --git a/app/src/main/java/io/legado/app/data/entities/rule/TocRule.kt b/app/src/main/java/io/legado/app/data/entities/rule/TocRule.kt index 0d084508f..c484e7226 100644 --- a/app/src/main/java/io/legado/app/data/entities/rule/TocRule.kt +++ b/app/src/main/java/io/legado/app/data/entities/rule/TocRule.kt @@ -6,6 +6,5 @@ data class TocRule( var chapterUrl: String? = null, var isVip: String? = null, var updateTime: String? = null, - var timeFormat: String? = null, var nextTocUrl: String? = null ) \ No newline at end of file diff --git a/app/src/main/java/io/legado/app/model/webbook/BookChapterList.kt b/app/src/main/java/io/legado/app/model/webbook/BookChapterList.kt index 6fecdb4f9..37cfd690c 100644 --- a/app/src/main/java/io/legado/app/model/webbook/BookChapterList.kt +++ b/app/src/main/java/io/legado/app/model/webbook/BookChapterList.kt @@ -11,7 +11,6 @@ import io.legado.app.model.analyzeRule.AnalyzeRule import io.legado.app.model.analyzeRule.AnalyzeUrl import kotlinx.coroutines.CoroutineScope import kotlinx.coroutines.withContext -import org.apache.commons.lang3.time.DateUtils object BookChapterList { @@ -160,27 +159,19 @@ object BookChapterList { val vipRule = analyzeRule.splitSourceRule(tocRule.isVip) val update = analyzeRule.splitSourceRule(tocRule.updateTime) var isVip: String? - var timeStr: String for (item in elements) { analyzeRule.setContent(item) val bookChapter = BookChapter(bookUrl = book.bookUrl) analyzeRule.chapter = bookChapter bookChapter.title = analyzeRule.getString(nameRule) bookChapter.url = analyzeRule.getString(urlRule, true) - timeStr = analyzeRule.getString(update) + bookChapter.tag = analyzeRule.getString(update) isVip = analyzeRule.getString(vipRule) if (bookChapter.url.isEmpty()) bookChapter.url = baseUrl if (bookChapter.title.isNotEmpty()) { if (isVip.isNotEmpty() && isVip != "null" && isVip != "false" && isVip != "0") { bookChapter.title = "\uD83D\uDD12" + bookChapter.title } - tocRule.timeFormat?.let { - if (it.isNotEmpty()) { - kotlin.runCatching { - bookChapter.start = DateUtils.parseDate(timeStr, it).time - } - } - } chapterList.add(bookChapter) } }