Merge pull request #552 from vector-im/feature/bma/lazyOkHttp
Lazy use the OkHttpClient.
This commit is contained in:
commit
0e766418e1
1 changed files with 1 additions and 1 deletions
|
|
@ -32,6 +32,6 @@ class RetrofitFactory @Inject constructor(
|
||||||
fun create(baseUrl: String): Retrofit = Retrofit.Builder()
|
fun create(baseUrl: String): Retrofit = Retrofit.Builder()
|
||||||
.baseUrl(baseUrl.ensureTrailingSlash())
|
.baseUrl(baseUrl.ensureTrailingSlash())
|
||||||
.addConverterFactory(json.get().asConverterFactory("application/json".toMediaType()))
|
.addConverterFactory(json.get().asConverterFactory("application/json".toMediaType()))
|
||||||
.callFactory(okHttpClient.get())
|
.callFactory { request -> okHttpClient.get().newCall(request) }
|
||||||
.build()
|
.build()
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue