Revert Organizer on launch
Status in Organizer is wrong on first launch.
This commit is contained in:
parent
a4a7ecff97
commit
18ff4b69a5
|
@ -17,7 +17,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
- Upgrade project to Xcode 11.
|
- Upgrade project to Xcode 11.
|
||||||
- Show Organizer on launch rather than profile in use.
|
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
|
|
|
@ -88,7 +88,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate, UISplitViewControllerDele
|
||||||
// MARK: UISplitViewControllerDelegate
|
// MARK: UISplitViewControllerDelegate
|
||||||
|
|
||||||
func splitViewController(_ splitViewController: UISplitViewController, collapseSecondary secondaryViewController: UIViewController, onto primaryViewController: UIViewController) -> Bool {
|
func splitViewController(_ splitViewController: UISplitViewController, collapseSecondary secondaryViewController: UIViewController, onto primaryViewController: UIViewController) -> Bool {
|
||||||
return true//!TransientStore.shared.service.hasActiveProfile()
|
return !TransientStore.shared.service.hasActiveProfile()
|
||||||
}
|
}
|
||||||
|
|
||||||
// MARK: URLs
|
// MARK: URLs
|
||||||
|
|
Loading…
Reference in New Issue