Merge pull request #385 from James-Sangalli/fix-crash-when-tap-on-awallet-custom-url-scheme

Fix: crash when tap on a awallet: custom url scheme
pull/394/head
James Sangalli 7 years ago committed by GitHub
commit 62b2e35bd9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      Trust/AppDelegate.swift

@ -53,7 +53,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate, UISplitViewControllerDele
}
// Respond to URI scheme links
func application(_ application: UIApplication, open url: URL, sourceApplication: String?, annotation: Any) -> Bool {
func application(_ app: UIApplication, open url: URL, options: [UIApplicationOpenURLOptionsKey : Any] = [:]) -> Bool {
return true
}

Loading…
Cancel
Save