From ef4bf74ac5c905efcfbeb6643167cd19644d8987 Mon Sep 17 00:00:00 2001 From: Max Goedjen Date: Sun, 2 Jan 2022 16:15:09 -0800 Subject: [PATCH] . --- Sources/SecretAgent/AppDelegate.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/SecretAgent/AppDelegate.swift b/Sources/SecretAgent/AppDelegate.swift index ce9832d..23ec181 100644 --- a/Sources/SecretAgent/AppDelegate.swift +++ b/Sources/SecretAgent/AppDelegate.swift @@ -33,6 +33,7 @@ class AppDelegate: NSObject, NSApplicationDelegate { DispatchQueue.main.async { self.socketController.handler = self.agent.handle(reader:writer:) } + try? publicKeyFileStoreController.generatePublicKeys(for: storeList.stores.flatMap({ $0.secrets })) notifier.prompt() updateSink = updater.$update.sink { update in guard let update = update else { return } @@ -43,7 +44,6 @@ class AppDelegate: NSObject, NSApplicationDelegate { func reloadKeys() { // TODO: This // storeList.reloadAll() - try? publicKeyFileStoreController.clear() try? publicKeyFileStoreController.generatePublicKeys(for: storeList.stores.flatMap({ $0.secrets })) }