pull/1876/head^2
kunfei 3 years ago
parent 3190ab79c8
commit cb921b657c
  1. 4
      app/src/main/java/io/legado/app/data/entities/BookChapter.kt

@ -95,7 +95,7 @@ data class BookChapter(
2 -> displayTitle = ChineseUtils.s2t(displayTitle) 2 -> displayTitle = ChineseUtils.s2t(displayTitle)
} }
} }
if (useReplace && replaceRules != null) { if (useReplace && replaceRules != null) kotlin.run {
replaceRules.forEach { item -> replaceRules.forEach { item ->
if (item.pattern.isNotEmpty()) { if (item.pattern.isNotEmpty()) {
try { try {
@ -115,7 +115,7 @@ data class BookChapter(
item.isEnabled = false item.isEnabled = false
appDb.replaceRuleDao.update(item) appDb.replaceRuleDao.update(item)
} catch (e: CancellationException) { } catch (e: CancellationException) {
return displayTitle return@run
} catch (e: Exception) { } catch (e: Exception) {
AppLog.put("${item.name}替换出错\n替换内容\n${displayTitle}", e) AppLog.put("${item.name}替换出错\n替换内容\n${displayTitle}", e)
appCtx.toastOnUi("${item.name}替换出错") appCtx.toastOnUi("${item.name}替换出错")

Loading…
Cancel
Save