fix reachability [skip ci]

This commit is contained in:
overtake 2021-01-29 19:52:29 +04:00
parent b740522e3c
commit 6b36b77d87

View File

@ -12,7 +12,7 @@ private final class WrappedLegacyReachability: NSObject {
}
private static let thread: Thread = {
let thread = Thread(target: Reachability.self, selector: #selector(WrappedLegacyReachability.threadImpl), object: nil)
let thread = Thread(target: WrappedLegacyReachability.self, selector: #selector(WrappedLegacyReachability.threadImpl), object: nil)
thread.start()
return thread
}()