Remove MainActor annotation from FeedFinder — it’s not needed.
This commit is contained in:
parent
82fef8c237
commit
65a18129ca
|
@ -13,11 +13,11 @@ import Web
|
|||
import CommonErrors
|
||||
import os.log
|
||||
|
||||
@MainActor public final class FeedFinder {
|
||||
public final class FeedFinder {
|
||||
|
||||
private static let logger = Logger(subsystem: Bundle.main.bundleIdentifier!, category: "FeedFinder")
|
||||
nonisolated(unsafe) private static let logger = Logger(subsystem: Bundle.main.bundleIdentifier!, category: "FeedFinder")
|
||||
|
||||
@MainActor public static func find(url: URL) async throws -> Set<FeedSpecifier> {
|
||||
public static func find(url: URL) async throws -> Set<FeedSpecifier> {
|
||||
|
||||
var downloadData: DownloadData?
|
||||
|
||||
|
|
Loading…
Reference in New Issue