mirror of
https://github.com/aniyomiorg/aniyomi.git
synced 2024-11-26 23:18:17 +03:00
Remove some legacy folder/file name lookup for download
Co-authored-by: AntsyLich <59261191+AntsyLich@users.noreply.github.com>
This commit is contained in:
parent
d07bd71678
commit
5419d987f8
1 changed files with 1 additions and 10 deletions
|
@ -165,21 +165,12 @@ class MangaDownloadProvider(
|
|||
*/
|
||||
fun getValidChapterDirNames(chapterName: String, chapterScanlator: String?): List<String> {
|
||||
val chapterDirName = getChapterDirName(chapterName, chapterScanlator)
|
||||
return buildList(4) {
|
||||
return buildList(2) {
|
||||
// Folder of images
|
||||
add(chapterDirName)
|
||||
|
||||
// Archived chapters
|
||||
add("$chapterDirName.cbz")
|
||||
|
||||
if (chapterScanlator.isNullOrBlank()) {
|
||||
// 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))
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue