mirror of
https://github.com/DefinedNet/mobile_nebula.git
synced 2025-02-22 11:05:29 +00:00
Mark SiteUpdater as @unchecked Sendable
This commit is contained in:
parent
77626273a2
commit
8634f4cf63
1 changed files with 3 additions and 3 deletions
|
@ -78,14 +78,14 @@ class Sites {
|
|||
}
|
||||
}
|
||||
|
||||
class SiteUpdater: NSObject, FlutterStreamHandler {
|
||||
class SiteUpdater: NSObject, FlutterStreamHandler, @unchecked Sendable {
|
||||
private var eventSink: FlutterEventSink?
|
||||
private var eventChannel: FlutterEventChannel
|
||||
private var site: Site
|
||||
private var notification: Any?
|
||||
public var startFunc: (() -> Void)?
|
||||
private var configFd: Int32? = nil
|
||||
private var configObserver: (any DispatchSourceFileSystemObject)? = nil
|
||||
private var configFd: Int32?
|
||||
private var configObserver: (any DispatchSourceFileSystemObject)?
|
||||
|
||||
init(messenger: any FlutterBinaryMessenger, site: Site) {
|
||||
do {
|
||||
|
|
Loading…
Reference in a new issue