mirror of
https://github.com/mihonapp/mihon.git
synced 2024-11-07 11:17:25 +01:00
MangaCoverFetcher: Use source's header for network request (#6847)
This commit is contained in:
parent
0ed0d903cc
commit
5409af0a6c
@ -141,7 +141,7 @@ class MangaCoverFetcher(
|
|||||||
private fun newRequest(): Request {
|
private fun newRequest(): Request {
|
||||||
val request = Request.Builder()
|
val request = Request.Builder()
|
||||||
.url(url)
|
.url(url)
|
||||||
.headers(options.headers)
|
.headers(sourceLazy.value?.headers ?: options.headers)
|
||||||
// Support attaching custom data to the network request.
|
// Support attaching custom data to the network request.
|
||||||
.tag(Parameters::class.java, options.parameters)
|
.tag(Parameters::class.java, options.parameters)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user