MangaCoverFetcher: Use source's header for network request (#6847)

This commit is contained in:
Ivan Iskandar 2022-04-02 19:44:01 +07:00 committed by GitHub
parent 0ed0d903cc
commit 5409af0a6c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -141,7 +141,7 @@ class MangaCoverFetcher(
private fun newRequest(): Request {
val request = Request.Builder()
.url(url)
.headers(options.headers)
.headers(sourceLazy.value?.headers ?: options.headers)
// Support attaching custom data to the network request.
.tag(Parameters::class.java, options.parameters)