fix: fail to remove duplicate title when content only has title

This commit is contained in:
Xwite
2022-05-31 14:04:18 +08:00
parent a8131d5362
commit 72b0fd5a47

View File

@@ -85,7 +85,7 @@ class ContentProcessor private constructor(
try {
val name = Pattern.quote(book.name)
val title = Pattern.quote(chapter.title)
val titleRegex = "^(\\s|\\p{P}|${name})*${title}(\\s)+".toRegex()
val titleRegex = "^(\\s|\\p{P}|${name})*${title}(\\s)*".toRegex()
mContent = mContent.replace(titleRegex, "")
} catch (e: Exception) {
AppLog.put("去除重复标题出错\n${e.localizedMessage}", e)