DownloadProvider: Remove duplicate in valid chapter dir name list (#7826)

(cherry picked from commit 40749dc76709a1792fb01f90fa9a03da03e7e0b7)
This commit is contained in:
stevenyomi 2022-08-21 01:19:15 +08:00 committed by Jobobby04
parent 3eb943055e
commit 90db474512

View File

@ -181,7 +181,7 @@ class DownloadProvider(private val context: Context) {
*/
fun getValidChapterDirNames(chapterName: String, chapterScanlator: String?): List<String> {
val chapterDirName = getChapterDirName(chapterName, chapterScanlator)
return buildList(5) {
return buildList(4) {
// Folder of images
add(chapterDirName)
@ -192,10 +192,10 @@ class DownloadProvider(private val context: Context) {
// Previously null scanlator fields were converted to "" due to a bug
add("_$chapterDirName")
add("_$chapterDirName.cbz")
} else {
// Legacy chapter directory name used in v0.9.2 and before
add(DiskUtil.buildValidFilename(chapterName))
}
// Legacy chapter directory name used in v0.9.2 and before
add(DiskUtil.buildValidFilename(chapterName))
}
}
}