This commit is contained in:
Max Goedjen 2022-01-02 16:15:09 -08:00
parent 64225af0c1
commit ef4bf74ac5
No known key found for this signature in database
GPG Key ID: E58C21DD77B9B8E8
1 changed files with 1 additions and 1 deletions

View File

@ -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 }))
}