webview crash fix

This commit is contained in:
Blatzar 2023-01-26 00:34:55 +01:00
parent 5050ff65c0
commit 01f1edab3c
1 changed files with 3 additions and 1 deletions

View File

@ -64,7 +64,9 @@ class CloudflareKiller : Interceptor {
}
private fun getWebViewCookie(url: String): String? {
return CookieManager.getInstance()?.getCookie(url)
return normalSafeApiCall {
CookieManager.getInstance()?.getCookie(url)
}
}
/**