We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e5f0ea commit 3625078Copy full SHA for 3625078
zoomable-image/coil/src/main/kotlin/me/saket/telephoto/zoomable/coil/CoilImageSource.kt
@@ -111,6 +111,8 @@ internal class Resolver(
111
// Ignore "no-store" http headers if they're present and always cache images to disk. Otherwise,
112
// telephoto will be unable to sub-sample large images directly from coil's memory cache.
113
.respectCacheHeaders(false)
114
+ // Prevent ConnectivityManager.TooManyRequestsException (https://github.com/coil-kt/coil/issues/2567).
115
+ .networkObserverEnabled(false)
116
.build()
117
} else imageLoader
118
0 commit comments