Fix warning
This commit is contained in:
parent
aedade6d5b
commit
0c3313227b
|
@ -223,7 +223,6 @@ extension SceneCoordinator {
|
||||||
func setup() {
|
func setup() {
|
||||||
let rootViewController: UIViewController
|
let rootViewController: UIViewController
|
||||||
|
|
||||||
do {
|
|
||||||
let _authentication = AuthenticationServiceProvider.shared.authenticationSortedByActivation().first
|
let _authentication = AuthenticationServiceProvider.shared.authenticationSortedByActivation().first
|
||||||
let _authContext = _authentication.flatMap { AuthContext(authentication: $0) }
|
let _authContext = _authentication.flatMap { AuthContext(authentication: $0) }
|
||||||
self.authContext = _authContext
|
self.authContext = _authContext
|
||||||
|
@ -240,6 +239,7 @@ extension SceneCoordinator {
|
||||||
self.tabBarController = splitViewController.contentSplitViewController.mainTabBarController
|
self.tabBarController = splitViewController.contentSplitViewController.mainTabBarController
|
||||||
rootViewController = splitViewController
|
rootViewController = splitViewController
|
||||||
}
|
}
|
||||||
|
|
||||||
sceneDelegate.window?.rootViewController = rootViewController // base: main
|
sceneDelegate.window?.rootViewController = rootViewController // base: main
|
||||||
self.rootViewController = rootViewController
|
self.rootViewController = rootViewController
|
||||||
|
|
||||||
|
@ -252,14 +252,6 @@ extension SceneCoordinator {
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
} catch {
|
|
||||||
assertionFailure(error.localizedDescription)
|
|
||||||
Task {
|
|
||||||
try? await Task.sleep(nanoseconds: .second * 2)
|
|
||||||
setup() // entry #2: retry
|
|
||||||
} // end Task
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@MainActor
|
@MainActor
|
||||||
|
|
Loading…
Reference in New Issue