Browse Source

fix(Android): Revert "Redirected URLs now redirect correctly. (#991)" (#1177)

This reverts commit acf1ad7560.
Daniel Vicory 4 years ago
parent
commit
344aab591a
No account linked to committer's email address

+ 1
- 1
android/src/main/java/com/reactnativecommunity/webview/RNCWebViewManager.java View File

748
         new TopShouldStartLoadWithRequestEvent(
748
         new TopShouldStartLoadWithRequestEvent(
749
           view.getId(),
749
           view.getId(),
750
           createWebViewEvent(view, url)));
750
           createWebViewEvent(view, url)));
751
-      return super.shouldOverrideUrlLoading(view,url);
751
+      return true;
752
     }
752
     }
753
 
753
 
754
 
754