mirror of
https://github.com/mihonapp/mihon.git
synced 2024-11-07 03:07:25 +01:00
Limit saved page filenames to 127 characters (fixes #2638)
This commit is contained in:
parent
8ae15141f6
commit
6940ad3fd9
@ -448,9 +448,10 @@ class ReaderPresenter(
|
||||
val chapter = page.chapter.chapter
|
||||
|
||||
// Build destination file.
|
||||
val filenameSuffix = " - ${page.number}.${type.extension}"
|
||||
val filename = DiskUtil.buildValidFilename(
|
||||
"${manga.title} - ${chapter.name}".take(225)
|
||||
) + " - ${page.number}.${type.extension}"
|
||||
"${manga.title} - ${chapter.name}".take(MAX_FILE_NAME_LENGTH - filenameSuffix.length)
|
||||
) + filenameSuffix
|
||||
|
||||
val destFile = File(directory, filename)
|
||||
stream().use { input ->
|
||||
@ -638,4 +639,9 @@ class ReaderPresenter(
|
||||
.subscribeOn(Schedulers.io())
|
||||
.subscribe()
|
||||
}
|
||||
|
||||
companion object {
|
||||
// Safe max filename size is 255 bytes and 1 char = 2 bytes
|
||||
private const val MAX_FILE_NAME_LENGTH = 127
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user