This commit is contained in:
gedoor 2022-01-03 20:55:38 +08:00
parent 20305b5ff3
commit afa658acfa

View File

@ -19,7 +19,6 @@ class UmdFile(var book: Book) {
@Synchronized
private fun getUFile(book: Book): UmdFile {
if (uFile == null || uFile?.book?.bookUrl != book.bookUrl) {
uFile = UmdFile(book)
return uFile!!
@ -76,7 +75,6 @@ class UmdFile(var book: Book) {
}
if (!File(book.coverUrl!!).exists()) {
FileUtils.writeBytes(book.coverUrl!!, it.cover.coverData)
}
}
} catch (e: Exception) {