空白章节导出时输出""

pull/1568/head
Xwite 3 years ago
parent d2a38993b8
commit d1b84c433c
  1. 4
      app/src/main/java/io/legado/app/ui/book/cache/CacheViewModel.kt

@ -163,7 +163,7 @@ class CacheViewModel(application: Application) : BaseViewModel(application) {
.getContent(
book,
chapter,
content ?: "null",
content ?: "",
includeTitle = !AppConfig.exportNoChapterName,
useReplace = useReplace,
chineseConvert = false,
@ -419,7 +419,7 @@ class CacheViewModel(application: Application) : BaseViewModel(application) {
upAdapterLiveData.postValue(book.bookUrl)
exportProgress[book.bookUrl] = index
BookHelp.getContent(book, chapter).let { content ->
var content1 = fixPic(epubBook, book, content ?: "null", chapter)
var content1 = fixPic(epubBook, book, content ?: "", chapter)
content1 = contentProcessor
.getContent(
book,

Loading…
Cancel
Save