|
@@ -88,7 +88,7 @@ class DownloadProvider(private val context: Context) {
|
|
|
*/
|
|
|
fun findChapterDir(chapter: Chapter, manga: Manga, source: Source): UniFile? {
|
|
|
val mangaDir = findMangaDir(manga, source)
|
|
|
- return mangaDir?.findFile(getChapterDirName(chapter))
|
|
|
+ return getValidChapterDirNames(chapter).mapNotNull { mangaDir?.findFile(it) }.firstOrNull()
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -100,7 +100,9 @@ class DownloadProvider(private val context: Context) {
|
|
|
*/
|
|
|
fun findChapterDirs(chapters: List<Chapter>, manga: Manga, source: Source): List<UniFile> {
|
|
|
val mangaDir = findMangaDir(manga, source) ?: return emptyList()
|
|
|
- return chapters.mapNotNull { mangaDir.findFile(getChapterDirName(it)) }
|
|
|
+ return chapters.mapNotNull { chp ->
|
|
|
+ getValidChapterDirNames(chp).mapNotNull { mangaDir.findFile(it) }.firstOrNull()
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -127,6 +129,23 @@ class DownloadProvider(private val context: Context) {
|
|
|
* @param chapter the chapter to query.
|
|
|
*/
|
|
|
fun getChapterDirName(chapter: Chapter): String {
|
|
|
- return DiskUtil.buildValidFilename(chapter.name)
|
|
|
+ return DiskUtil.buildValidFilename(
|
|
|
+ if (chapter.scanlator != null) "${chapter.scanlator}_${chapter.name}"
|
|
|
+ else chapter.name
|
|
|
+ )
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Returns valid downloaded chapter directory names.
|
|
|
+ *
|
|
|
+ * @param chapter the chapter to query.
|
|
|
+ */
|
|
|
+ fun getValidChapterDirNames(chapter: Chapter): List<String> {
|
|
|
+ return listOf(
|
|
|
+ // Legacy chapter directory name used in v0.9.2 and before
|
|
|
+ DiskUtil.buildValidFilename(chapter.name),
|
|
|
+ // New chapter chapter directory name
|
|
|
+ getChapterDirName(chapter)
|
|
|
+ )
|
|
|
}
|
|
|
}
|