mirror of
https://github.com/mihonapp/mihon.git
synced 2024-11-14 14:32:49 +01:00
lint 2
This commit is contained in:
parent
b1da3f3421
commit
399e689969
@ -105,9 +105,8 @@ class ChapterLoader(
|
||||
is Format.Directory -> DirectoryPageLoader(format.file)
|
||||
is Format.Zip -> ZipPageLoader(tempFileManager.createTempFile(format.file))
|
||||
is Format.SevenZip -> try {
|
||||
SevenZipPageLoader(tempFileManager.createTempFile(format.file))
|
||||
{
|
||||
GlobalScope.launchUI{
|
||||
SevenZipPageLoader(tempFileManager.createTempFile(format.file)) {
|
||||
GlobalScope.launchUI {
|
||||
context.toast(context.stringResource(MR.strings.loader_7zip_slow_archives, it))
|
||||
}
|
||||
}
|
||||
|
@ -11,7 +11,7 @@ import java.io.File
|
||||
*/
|
||||
internal class SevenZipPageLoader(
|
||||
private val file: File,
|
||||
private val notifySlowArchive: (method: String) -> Unit
|
||||
private val notifySlowArchive: (method: String) -> Unit,
|
||||
) : PageLoader() {
|
||||
|
||||
private val zip by lazy { SevenZFile(file) }
|
||||
|
@ -344,7 +344,7 @@ actual class LocalSource(
|
||||
}
|
||||
is Format.SevenZip -> {
|
||||
SevenZFile(tempFileManager.createTempFile(format.file)).use { archive ->
|
||||
val entry = archive.getImages {} .firstOrNull()
|
||||
val entry = archive.getImages {}.firstOrNull()
|
||||
|
||||
entry?.let { coverManager.update(manga, it.inputStream()) }
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user