From 15215af37ec695c60399a237a1d49346b36b567f Mon Sep 17 00:00:00 2001 From: Abhishek Date: Sun, 28 Jun 2020 00:29:20 -0500 Subject: [PATCH] Correct silly mistake. --- Clocker/AppDelegate.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Clocker/AppDelegate.swift b/Clocker/AppDelegate.swift index 6d0dcfb..a79b6b9 100644 --- a/Clocker/AppDelegate.swift +++ b/Clocker/AppDelegate.swift @@ -113,7 +113,7 @@ open class AppDelegate: NSObject, NSApplicationDelegate { let shouldLaunchOnboarding = (DataStore.shared().retrieve(key: CLShowOnboardingFlow) == nil && DataStore.shared().timezones().isEmpty) || ProcessInfo.processInfo.arguments.contains(CLOnboaringTestsLaunchArgument) - shouldLaunchOnboarding ? controller?.launch() : controller?.launch() + shouldLaunchOnboarding ? controller?.launch() : continueUsually() } func continueUsually() {