Albirew/tachiyomi
Archivé
1
0
Bifurcation 0

Avoid crashing during eager WebView init

Cette révision appartient à :
arkon 2022-10-21 16:57:13 -04:00
Parent eb742b29f8
révision fbda243c0d

Voir le fichier

@ -38,7 +38,11 @@ abstract class WebViewInterceptor(private val context: Context) : Interceptor {
return@lazy
}
WebSettings.getDefaultUserAgent(context)
try {
WebSettings.getDefaultUserAgent(context)
} catch (_: Exception) {
// Avoid some crashes like when Chrome/WebView is being updated.
}
}
abstract fun shouldIntercept(response: Response): Boolean