Komga: fix pdf image file issue (#5266)
This commit is contained in:
parent
f1cb28d2ad
commit
e0f76c24bd
|
@ -1,7 +1,7 @@
|
|||
ext {
|
||||
extName = 'Komga'
|
||||
extClass = '.KomgaFactory'
|
||||
extVersionCode = 57
|
||||
extVersionCode = 58
|
||||
}
|
||||
|
||||
apply from: "$rootDir/common.gradle"
|
||||
|
|
|
@ -251,6 +251,10 @@ open class Komga(private val suffix: String = "") : ConfigurableSource, Unmetere
|
|||
|
||||
override fun imageUrlParse(response: Response): String = throw UnsupportedOperationException()
|
||||
|
||||
override fun imageRequest(page: Page): Request {
|
||||
return GET(page.imageUrl!!, headers = headersBuilder().add("Accept", "image/*,*/*;q=0.8").build())
|
||||
}
|
||||
|
||||
override fun getFilterList(): FilterList {
|
||||
fetchFilterOptions()
|
||||
|
||||
|
|
Loading…
Reference in New Issue