Jason Foo 4 年前
父节点
当前提交
2931c01acb
没有帐户链接到提交者的电子邮件
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2
    2
      src/WebView.android.tsx

+ 2
- 2
src/WebView.android.tsx 查看文件

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