Skip to content

Commit

Permalink
fix(ios): remove itms-services private scheme (#464)
Browse files Browse the repository at this point in the history
  • Loading branch information
jcesarmobile committed Oct 30, 2019
1 parent cbd526d commit d7d2600
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/ios/CDVWKWebViewEngine.m
Original file line number Diff line number Diff line change
Expand Up @@ -761,8 +761,7 @@ - (void) webView:(WKWebView *)webView decidePolicyForNavigationAction:(WKNavigat
[scheme isEqualToString:@"mailto"] ||
[scheme isEqualToString:@"facetime"] ||
[scheme isEqualToString:@"sms"] ||
[scheme isEqualToString:@"maps"] ||
[scheme isEqualToString:@"itms-services"]) {
[scheme isEqualToString:@"maps"]) {
[[UIApplication sharedApplication] openURL:url];
decisionHandler(WKNavigationActionPolicyCancel);
} else {
Expand Down

0 comments on commit d7d2600

Please sign in to comment.