TF-2871 Fix keychain not being accessible when application is terminated

This commit is contained in:
dab246
2024-07-11 08:46:28 +07:00
committed by Dat H. Pham
parent 9e753768cc
commit 33aff9eb05
2 changed files with 2 additions and 1 deletions
@@ -15,7 +15,7 @@ class KeychainController: KeychainControllerDelegate {
init(service: KeychainControllerService,
accessGroup: String) {
keychain = Keychain(service: service.identifier,
accessGroup: accessGroup)
accessGroup: accessGroup).accessibility(.afterFirstUnlock)
}
func retrieveSharingSessionFromKeychain(accountId: String) -> KeychainSharingSession? {