This commit is contained in:
kunfei
2022-05-11 09:56:36 +08:00
parent 41b8b2c634
commit c73cd4dd65
@@ -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}替换出错")