瀏覽代碼

fix(iOS): Restore "name:HistoryShimName];" that was cut off.

Jamie Birch 5 年之前
父節點
當前提交
75ec36fefc
No account linked to committer's email address
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. 1
    1
      ios/RNCWebView.m

+ 1
- 1
ios/RNCWebView.m 查看文件

168
   wkWebViewConfig.userContentController = [WKUserContentController new];
168
   wkWebViewConfig.userContentController = [WKUserContentController new];
169
 
169
 
170
   // Shim the HTML5 history API:
170
   // Shim the HTML5 history API:
171
-  [wkWebViewConfig.userContentController addScriptMessageHandler:[[RNCWeakScriptMessageDelegate alloc] initWithDelegate:self]
171
+  [wkWebViewConfig.userContentController addScriptMessageHandler:[[RNCWeakScriptMessageDelegate alloc] initWithDelegate:self] name:HistoryShimName];
172
 
172
 
173
   [self resetupScripts:wkWebViewConfig];
173
   [self resetupScripts:wkWebViewConfig];
174
 
174