Browse Source

don't open the AccountSetupController after switching to an encrypted account

cyberta 3 years ago
parent
commit
25494aa267
1 changed files with 1 additions and 1 deletions
  1. 1 1
      deltachat-ios/Controller/WelcomeViewController.swift

+ 1 - 1
deltachat-ios/Controller/WelcomeViewController.swift

@@ -213,7 +213,7 @@ class WelcomeViewController: UIViewController, ProgressAlertHandler {
                 logger.error("Failed to open account database for account \(dcContext.id)")
                 return
             }
-            showAccountSetupController()
+            self.navigationItem.title = "Add encrypted account"
         } catch KeychainError.unhandledError(let message, let status) {
             logger.error("Keychain error. Failed to create encrypted account. \(message). Error status: \(status)")
         } catch {