Replaced openURL with AppDelegate.theDelegate().handleUniversalLinkURL(url)

This commit is contained in:
Arnfried Griesert
2023-03-09 14:46:55 +01:00
parent 28c49d0dbf
commit 785212ffde
+1 -1
View File
@@ -72,7 +72,7 @@ struct PermalinkQRCodeScanner: View {
presentationMode.wrappedValue.dismiss()
DispatchQueue.main.asyncAfter(deadline: .now() + 1.0) {
if let url = URL(string: qrCode) {
UIApplication.shared.open(url)
AppDelegate.theDelegate().handleUniversalLinkURL(url)
}
}
} else {