pull/464/head
Robot 4 years ago
commit a4ab0319a2
  1. 1
      app/src/main/assets/updateLog.md
  2. 2
      app/src/main/java/io/legado/app/model/webBook/BookChapterList.kt

@ -8,6 +8,7 @@
* 解决一些书名太长缓存报错的bug * 解决一些书名太长缓存报错的bug
* 添加备份搜索记录 * 添加备份搜索记录
* 替换编辑界面添加正则学习教程 * 替换编辑界面添加正则学习教程
* 去除解析目录时拼接相对url,提升解析速度
* 自动分段优化 by [tumuyan](https://github.com/tumuyan) * 自动分段优化 by [tumuyan](https://github.com/tumuyan)
**2020/11/01** **2020/11/01**

@ -244,7 +244,7 @@ object BookChapterList {
val bookChapter = BookChapter(bookUrl = book.bookUrl) val bookChapter = BookChapter(bookUrl = book.bookUrl)
analyzeRule.chapter = bookChapter analyzeRule.chapter = bookChapter
bookChapter.title = analyzeRule.getString(nameRule) bookChapter.title = analyzeRule.getString(nameRule)
bookChapter.url = analyzeRule.getString(urlRule, true) bookChapter.url = analyzeRule.getString(urlRule)
bookChapter.tag = analyzeRule.getString(update) bookChapter.tag = analyzeRule.getString(update)
isVip = analyzeRule.getString(vipRule) isVip = analyzeRule.getString(vipRule)
if (bookChapter.url.isEmpty()) bookChapter.url = baseUrl if (bookChapter.url.isEmpty()) bookChapter.url = baseUrl

Loading…
Cancel
Save