mirror of
https://github.com/KokaKiwi/BarInsta
synced 2025-12-12 15:06:30 +00:00
Fix favicon param can be nullable. Fixes austinhuang0131/barinsta#1353
This commit is contained in:
parent
5b9354324e
commit
0c61439957
1 changed files with 1 additions and 1 deletions
|
|
@ -21,7 +21,7 @@ class Login : BaseLanguageActivity(), View.OnClickListener {
|
||||||
|
|
||||||
private val webChromeClient = WebChromeClient()
|
private val webChromeClient = WebChromeClient()
|
||||||
private val webViewClient: WebViewClient = object : WebViewClient() {
|
private val webViewClient: WebViewClient = object : WebViewClient() {
|
||||||
override fun onPageStarted(view: WebView, url: String, favicon: Bitmap) {
|
override fun onPageStarted(view: WebView, url: String, favicon: Bitmap?) {
|
||||||
webViewUrl = url
|
webViewUrl = url
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue