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

This commit is contained in:
stevenyomi 2022-08-21 01:19:15 +08:00 committed by GitHub
parent 3599d53c61
commit 40749dc767
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -157,7 +157,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)
@ -168,10 +168,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))
}
}
}