Fix handling special characters in local manga filenames

pull/375/head
Koitharu 3 years ago
parent 4f68e7d0e6
commit 2e0eb5de54
No known key found for this signature in database
GPG Key ID: 8E861F8CE6E7CE27

@ -31,7 +31,8 @@ sealed class LocalMangaInput(
} }
@JvmStatic @JvmStatic
protected fun zipUri(file: File, entryName: String) = "cbz://${file.path}#$entryName" protected fun zipUri(file: File, entryName: String): String =
Uri.fromParts("cbz", file.path, entryName).toString()
@JvmStatic @JvmStatic
protected fun Manga.copy2( protected fun Manga.copy2(

Loading…
Cancel
Save