Merge pull request #1935 from michalsrutek/feature/remove-open-default-params
Remove open default params
This commit is contained in:
commit
93bc6ca1ed
|
@ -134,7 +134,7 @@ public class InAppBrowserManager: ChannelDelegate {
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
if #available(iOS 10.0, *) {
|
if #available(iOS 10.0, *) {
|
||||||
UIApplication.shared.open(absoluteUrl, options: [:], completionHandler: nil)
|
UIApplication.shared.open(absoluteUrl)
|
||||||
} else {
|
} else {
|
||||||
UIApplication.shared.openURL(absoluteUrl)
|
UIApplication.shared.openURL(absoluteUrl)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue