mirror of
https://github.com/mihonapp/mihon.git
synced 2024-11-07 03:07:25 +01:00
Avoid crashing during eager WebView init
This commit is contained in:
parent
eb742b29f8
commit
fbda243c0d
@ -38,7 +38,11 @@ abstract class WebViewInterceptor(private val context: Context) : Interceptor {
|
||||
return@lazy
|
||||
}
|
||||
|
||||
try {
|
||||
WebSettings.getDefaultUserAgent(context)
|
||||
} catch (_: Exception) {
|
||||
// Avoid some crashes like when Chrome/WebView is being updated.
|
||||
}
|
||||
}
|
||||
|
||||
abstract fun shouldIntercept(response: Response): Boolean
|
||||
|
Loading…
Reference in New Issue
Block a user