mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-19 08:03:50 +02:00
Implements #4693 - Alert users of Element on iOS11 deprecation.
This commit is contained in:
committed by
Stefan Ceriu
parent
59768d7c2a
commit
f93ed348c9
@@ -172,7 +172,7 @@ final class SecureBackupSetupIntroViewController: UIViewController {
|
||||
// we need to get this private key first. Ask the user to make a key backup restore to catch it
|
||||
if keyBackup.keyBackupVersion != nil && keyBackup.hasPrivateKeyInCryptoStore == false {
|
||||
|
||||
let alertContoller = UIAlertController(title: VectorL10n.secureKeyBackupSetupExistingBackupErrorTitle,
|
||||
let alertController = UIAlertController(title: VectorL10n.secureKeyBackupSetupExistingBackupErrorTitle,
|
||||
message: VectorL10n.secureKeyBackupSetupExistingBackupErrorInfo,
|
||||
preferredStyle: .alert)
|
||||
|
||||
@@ -188,11 +188,11 @@ final class SecureBackupSetupIntroViewController: UIViewController {
|
||||
self.delegate?.secureBackupSetupIntroViewControllerDidCancel(self, showSkipAlert: false)
|
||||
}
|
||||
|
||||
alertContoller.addAction(connectAction)
|
||||
alertContoller.addAction(resetAction)
|
||||
alertContoller.addAction(cancelAction)
|
||||
alertController.addAction(connectAction)
|
||||
alertController.addAction(resetAction)
|
||||
alertController.addAction(cancelAction)
|
||||
|
||||
self.present(alertContoller, animated: true)
|
||||
self.present(alertController, animated: true)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user