mirror of
https://github.com/mihonapp/mihon.git
synced 2025-02-08 02:44:13 +00:00
Lazily instantiate Cloudflare client
This commit is contained in:
parent
a5339969c9
commit
b3f5f13c39
1 changed files with 6 additions and 4 deletions
|
@ -61,8 +61,10 @@ class NetworkHelper(context: Context) {
|
|||
builder.build()
|
||||
}
|
||||
|
||||
val cloudflareClient = client.newBuilder()
|
||||
val cloudflareClient by lazy {
|
||||
client.newBuilder()
|
||||
.addInterceptor(UserAgentInterceptor())
|
||||
.addInterceptor(CloudflareInterceptor(context))
|
||||
.build()
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue