Browse Source

Update AppDelegate.swift

pull/113/head
Abhishek Banthia 3 years ago
parent
commit
dce7c81767
  1. 4
      Clocker/AppDelegate.swift

4
Clocker/AppDelegate.swift

@ -43,7 +43,7 @@ open class AppDelegate: NSObject, NSApplicationDelegate {
// Required for migrating our model type to CoreModelKit // Required for migrating our model type to CoreModelKit
NSKeyedUnarchiver.setClass(CoreModelKit.TimezoneData.classForKeyedUnarchiver(), forClassName: "Clocker.TimezoneData") NSKeyedUnarchiver.setClass(CoreModelKit.TimezoneData.classForKeyedUnarchiver(), forClassName: "Clocker.TimezoneData")
AppDefaults.initialize() AppDefaults.initialize(with: DataStore.shared(), defaults: UserDefaults.standard)
// Check if we can show the onboarding flow! // Check if we can show the onboarding flow!
showOnboardingFlowIfEligible() showOnboardingFlowIfEligible()
@ -53,7 +53,7 @@ open class AppDelegate: NSObject, NSApplicationDelegate {
#if RELEASE #if RELEASE
FirebaseApp.configure() FirebaseApp.configure()
checkIfRunFromApplicationsFolder() // checkIfRunFromApplicationsFolder()
#endif #endif
} }

Loading…
Cancel
Save