diff --git a/app/src/main/java/com/lagradost/cloudstream3/network/Requests.kt b/app/src/main/java/com/lagradost/cloudstream3/network/Requests.kt index ab3d3964..78b9e570 100644 --- a/app/src/main/java/com/lagradost/cloudstream3/network/Requests.kt +++ b/app/src/main/java/com/lagradost/cloudstream3/network/Requests.kt @@ -147,7 +147,7 @@ fun get( cacheTime: Int = DEFAULT_TIME, cacheUnit: TimeUnit = DEFAULT_TIME_UNIT, timeout: Long = 0L -): Response { +): response { val client = OkHttpClient().newBuilder() .followRedirects(allowRedirects) .followSslRedirects(allowRedirects) @@ -170,7 +170,7 @@ fun post( cacheTime: Int = DEFAULT_TIME, cacheUnit: TimeUnit = DEFAULT_TIME_UNIT, timeout: Long = 0L -): Response { +): response { val client = OkHttpClient().newBuilder() .followRedirects(allowRedirects) .followSslRedirects(allowRedirects)