mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
Replace the firstElementPassingTest function come from RSCore with the native function first(where:).
This commit is contained in:
@@ -37,7 +37,7 @@ class OpenInSafariActivity: UIActivity {
|
||||
}
|
||||
|
||||
override func perform() {
|
||||
guard let url = activityItems?.firstElementPassingTest({ $0 is URL }) as? URL else {
|
||||
guard let url = activityItems?.first(where: { $0 is URL }) as? URL else {
|
||||
activityDidFinish(false)
|
||||
return
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user