change new string to empty string
This commit is contained in:
parent
0923e6110e
commit
9894630cc5
|
|
@ -117,7 +117,7 @@ open class BaseWebView @JvmOverloads constructor(
|
|||
* to prevent infinite LOADING state
|
||||
*/
|
||||
fun loadUrl(url: String?) {
|
||||
binding.webView.loadUrl(url ?: String())
|
||||
binding.webView.loadUrl(url ?: "")
|
||||
}
|
||||
|
||||
fun setState(newState: WebViewLoadingState) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue