forked from recloudstream/cloudstream
webview crash fix
This commit is contained in:
parent
5050ff65c0
commit
01f1edab3c
1 changed files with 3 additions and 1 deletions
|
@ -64,7 +64,9 @@ class CloudflareKiller : Interceptor {
|
|||
}
|
||||
|
||||
private fun getWebViewCookie(url: String): String? {
|
||||
return CookieManager.getInstance()?.getCookie(url)
|
||||
return normalSafeApiCall {
|
||||
CookieManager.getInstance()?.getCookie(url)
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue