Parcourir la source

fix(WKWebView): iOS crash when WebView's title is nil (#521)

TMomemt il y a 5 ans
Parent
révision
7a91221926
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1
    1
      ios/RNCWKWebView.m

+ 1
- 1
ios/RNCWKWebView.m Voir le fichier

@@ -460,7 +460,7 @@ static NSURLCredential* clientAuthenticationCredential;
460 460
 {
461 461
   NSDictionary *event = @{
462 462
     @"url": _webView.URL.absoluteString ?: @"",
463
-    @"title": _webView.title,
463
+    @"title": _webView.title ?: @"",
464 464
     @"loading" : @(_webView.loading),
465 465
     @"canGoBack": @(_webView.canGoBack),
466 466
     @"canGoForward" : @(_webView.canGoForward)