Quellcode durchsuchen

fix(android): crash problem while loading local html resource (#1010)

小米-余乐 vor 4 Jahren
Ursprung
Commit
05c286fc23
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1
    1
      src/WebView.android.tsx

+ 1
- 1
src/WebView.android.tsx Datei anzeigen

@@ -278,7 +278,7 @@ class WebView extends React.Component<AndroidWebViewProps, State> {
278 278
     const webViewStyles = [styles.container, styles.webView, style];
279 279
     const webViewContainerStyle = [styles.container, containerStyle];
280 280
 
281
-    if (source && 'method' in source) {
281
+    if (typeof source !== "number" && source && 'method' in source) {
282 282
       if (source.method === 'POST' && source.headers) {
283 283
         console.warn(
284 284
           'WebView: `source.headers` is not supported when using POST.',