修复标题替换失效的问题

This commit is contained in:
HapeLee
2025-09-30 17:24:59 +08:00
parent 490bcc16c0
commit 09413c3669
3 changed files with 17 additions and 5 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ apply from: 'download.gradle'
ext {
versionMajor = 3
versionMinor = 25
versionPatch = 9
versionPatch = 10
}
def name = "legado"
@@ -170,7 +170,7 @@ class ChapterListAdapter(
}
private fun getDisplayTitle(chapter: BookChapter): String =
displayTitleMap[chapter.title] ?: chapter.title
displayTitleMap[chapter.url] ?: chapter.title
override fun getViewBinding(parent: ViewGroup): ItemChapterListBinding =
ItemChapterListBinding.inflate(inflater, parent, false)