fix: change epub file copy position

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

fix #2206
pull/2209/head
Xwite 2 years ago
parent 82b5244909
commit 19e7b58dd8
  1. 2
      app/src/main/java/io/legado/app/help/BookHelp.kt

@ -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("文件不存在")

Loading…
Cancel
Save