mirror of
https://github.com/aniyomiorg/aniyomi.git
synced 2024-11-26 06:43:45 +03:00
fix(deps): update okhttp monorepo to v5.0.0-alpha.14
* fix(deps): update okhttp monorepo to v5.0.0-alpha.14 * Fix build --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: AntsyLich <59261191+AntsyLich@users.noreply.github.com>
This commit is contained in:
parent
d1cf93bed1
commit
162471c7fb
2 changed files with 4 additions and 2 deletions
|
@ -34,7 +34,6 @@ import tachiyomi.domain.source.anime.service.AnimeSourceManager
|
|||
import uy.kohesive.injekt.injectLazy
|
||||
import java.io.File
|
||||
import java.io.IOException
|
||||
import java.net.HttpURLConnection.HTTP_NOT_MODIFIED
|
||||
|
||||
/**
|
||||
* A [Fetcher] that fetches cover image for [Anime] object.
|
||||
|
@ -344,5 +343,7 @@ class AnimeCoverFetcher(
|
|||
|
||||
private val CACHE_CONTROL_NO_STORE = CacheControl.Builder().noStore().build()
|
||||
private val CACHE_CONTROL_NO_NETWORK_NO_CACHE = CacheControl.Builder().noCache().onlyIfCached().build()
|
||||
|
||||
private const val HTTP_NOT_MODIFIED = 304
|
||||
}
|
||||
}
|
||||
|
|
|
@ -34,7 +34,6 @@ import tachiyomi.domain.source.manga.service.MangaSourceManager
|
|||
import uy.kohesive.injekt.injectLazy
|
||||
import java.io.File
|
||||
import java.io.IOException
|
||||
import java.net.HttpURLConnection.HTTP_NOT_MODIFIED
|
||||
|
||||
/**
|
||||
* A [Fetcher] that fetches cover image for [Manga] object.
|
||||
|
@ -344,5 +343,7 @@ class MangaCoverFetcher(
|
|||
|
||||
private val CACHE_CONTROL_NO_STORE = CacheControl.Builder().noStore().build()
|
||||
private val CACHE_CONTROL_NO_NETWORK_NO_CACHE = CacheControl.Builder().noCache().onlyIfCached().build()
|
||||
|
||||
private const val HTTP_NOT_MODIFIED = 304
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue