From 6e67a5edc8e45027280ae4dba7f4f6104f051f08 Mon Sep 17 00:00:00 2001 From: ShikiSuen Date: Fri, 21 Oct 2022 23:46:27 +0800 Subject: [PATCH] AppDelegate // Again always load cassette data on startup. --- Source/Modules/AppDelegate.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Modules/AppDelegate.swift b/Source/Modules/AppDelegate.swift index 9211f8c0..70e6cf6b 100644 --- a/Source/Modules/AppDelegate.swift +++ b/Source/Modules/AppDelegate.swift @@ -46,7 +46,7 @@ class AppDelegate: NSObject, NSApplicationDelegate, NSUserNotificationCenterDele if !PrefMgr.shared.onlyLoadFactoryLangModelsIfNeeded { LMMgr.loadDataModelsOnAppDelegate() } DispatchQueue.main.async { - if PrefMgr.shared.cassetteEnabled { LMMgr.loadCassetteData() } + LMMgr.loadCassetteData() LMMgr.initUserLangModels() self.folderMonitor.folderDidChange = { [weak self] in self?.reloadOnFolderChangeHappens()