mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-10 06:07:48 +01:00
Requests: add GET(HttpUrl)
overload (#8107)
Requests: add GET(HttpUrl) overload
This commit is contained in:
parent
6b1d597d34
commit
8b9a06e298
1 changed files with 13 additions and 0 deletions
|
@ -3,6 +3,8 @@ package eu.kanade.tachiyomi.network
|
|||
import okhttp3.CacheControl
|
||||
import okhttp3.FormBody
|
||||
import okhttp3.Headers
|
||||
import okhttp3.HttpUrl
|
||||
import okhttp3.HttpUrl.Companion.toHttpUrl
|
||||
import okhttp3.Request
|
||||
import okhttp3.RequestBody
|
||||
import java.util.concurrent.TimeUnit.MINUTES
|
||||
|
@ -15,6 +17,17 @@ fun GET(
|
|||
url: String,
|
||||
headers: Headers = DEFAULT_HEADERS,
|
||||
cache: CacheControl = DEFAULT_CACHE_CONTROL,
|
||||
): Request {
|
||||
return GET(url.toHttpUrl(), headers, cache)
|
||||
}
|
||||
|
||||
/**
|
||||
* @since extensions-lib 1.4
|
||||
*/
|
||||
fun GET(
|
||||
url: HttpUrl,
|
||||
headers: Headers = DEFAULT_HEADERS,
|
||||
cache: CacheControl = DEFAULT_CACHE_CONTROL,
|
||||
): Request {
|
||||
return Request.Builder()
|
||||
.url(url)
|
||||
|
|
Loading…
Reference in a new issue