mirror of
https://github.com/mihonapp/mihon.git
synced 2024-11-07 20:31:02 -05:00
Sanitize manga title in page download subfolder name (#5514)
This commit is contained in:
parent
c254aa6fcc
commit
fb35d7af59
1 changed files with 1 additions and 1 deletions
|
@ -596,7 +596,7 @@ class ReaderPresenter(
|
||||||
// Pictures directory.
|
// Pictures directory.
|
||||||
val baseDir = getPicturesDir(context).absolutePath
|
val baseDir = getPicturesDir(context).absolutePath
|
||||||
val destDir = if (preferences.folderPerManga()) {
|
val destDir = if (preferences.folderPerManga()) {
|
||||||
File(baseDir + File.separator + manga.title)
|
File(baseDir + File.separator + DiskUtil.buildValidFilename(manga.title))
|
||||||
} else {
|
} else {
|
||||||
File(baseDir)
|
File(baseDir)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue