@@ -247,9 +247,9 @@ class WebView extends React.Component<AndroidWebViewProps, State> {
if (onLoadEnd) {
onLoadEnd(event);
}
- if (url === this.startUrl) {
+ if (url && this.startUrl && url.toLowerCase() === this.startUrl.toLowerCase()) {
this.setState({
- viewState: 'IDLE',
+ viewState: 'IDLE',
});
this.updateNavigationState(event);