fix: change epub file copy position

BookHelp.clearInvalidCache will delete epub file, move to book folder rather than cache folder

fix #2206
This commit is contained in:
Xwite
2022-08-29 08:49:17 +08:00
parent 82b5244909
commit 19e7b58dd8
@@ -165,7 +165,7 @@ object BookHelp {
fun getEpubFile(book: Book): ZipFile {
val uri = Uri.parse(book.bookUrl)
if (uri.isContentScheme()) {
val path = FileUtils.getPath(downloadDir, cacheFolderName, book.originName)
val path = FileUtils.getPath(downloadDir, cacheFolderName, book.getFolderName(), book.originName)
val file = File(path)
val doc = DocumentFile.fromSingleUri(appCtx, uri)
?: throw IOException("文件不存在")