We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c4dc77c + 420d461 commit c69ff3dCopy full SHA for c69ff3d
WebViewJavascriptBridge/WebViewJavascriptBridge.m
@@ -139,7 +139,7 @@ - (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)
139
NSURL *url = [request URL];
140
if (![[url scheme] isEqualToString:CUSTOM_PROTOCOL_SCHEME]) {
141
if (self.delegate != nil && [self.delegate respondsToSelector:@selector(webView:shouldStartLoadWithRequest:navigationType:)]) {
142
- [self.delegate webView:webView shouldStartLoadWithRequest:request navigationType:navigationType];
+ return [self.delegate webView:webView shouldStartLoadWithRequest:request navigationType:navigationType];
143
}
144
return YES;
145
0 commit comments