Skip to content

Commit

Permalink
Fix URLOpener protocol for iOS 18
Browse files Browse the repository at this point in the history
  • Loading branch information
ZachOrr committed Nov 10, 2024
1 parent 6c91ddf commit bb5b237
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion the-blue-alliance-ios/Protocols/URLOpener.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ import UIKit

public protocol URLOpener {
func canOpenURL(_ url: URL) -> Bool
func open(_ url: URL, options: [UIApplication.OpenExternalURLOptionsKey : Any], completionHandler completion: ((Bool) -> Void)?)
func open(_ url: URL, options: [UIApplication.OpenExternalURLOptionsKey : Any], completionHandler completion: (@MainActor @Sendable (Bool) -> Void)?)
}

0 comments on commit bb5b237

Please sign in to comment.