Jason Foo 4 년 전
부모
커밋
2931c01acb
No account linked to committer's email address
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);