Merge pull request #1935 from michalsrutek/feature/remove-open-default-params

Remove open default params
This commit is contained in:
Lorenzo Pichilli 2023-12-23 14:03:10 +01:00 committed by GitHub
commit 93bc6ca1ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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)
} }