do not dismiss views when application is resumed (#605)
* do not dismiss views when application is resumed * prevents the PasswordNavigationViewController and PasswordDetailTableViewController from being dismissed when the app is put to the background and then brought back to the foreground * Instead, the PasswordEntities are re-fetched from the context by their path to handle the re-creation of the entities during an update process that could have run in the background * update SwiftLint to version 0.50.* * update SwiftFormat to 0.51.* --------- Co-authored-by: Mingshen Sun <bob@mssun.me>
This commit is contained in:
parent
83c6ae33dc
commit
f2a0c4ccf1
10 changed files with 77 additions and 26 deletions
|
|
@ -38,13 +38,13 @@ class CredentialProviderViewController: ASCredentialProviderViewController {
|
|||
passcodelock.presentPasscodeLockIfNeeded(self) {
|
||||
self.view.isHidden = true
|
||||
} after: { [unowned self] in
|
||||
self.view.isHidden = false
|
||||
self.credentialProvider.identifier = serviceIdentifiers.first
|
||||
view.isHidden = false
|
||||
credentialProvider.identifier = serviceIdentifiers.first
|
||||
let url = serviceIdentifiers.first
|
||||
.map(\.identifier)
|
||||
.flatMap(URL.init)
|
||||
self.passwordsViewController.navigationItem.prompt = url?.host
|
||||
self.passwordsViewController.showPasswordsWithSuggestion(matching: url?.host ?? "")
|
||||
passwordsViewController.navigationItem.prompt = url?.host
|
||||
passwordsViewController.showPasswordsWithSuggestion(matching: url?.host ?? "")
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -61,7 +61,7 @@ class CredentialProviderViewController: ASCredentialProviderViewController {
|
|||
passcodelock.presentPasscodeLockIfNeeded(self) {
|
||||
self.view.isHidden = true
|
||||
} after: { [unowned self] in
|
||||
self.credentialProvider.credentials(for: credentialIdentity)
|
||||
credentialProvider.credentials(for: credentialIdentity)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue