Browse Source

fixed error - self was missing in closure

Bastian van de Wetering 6 years ago
parent
commit
05fb32c4e0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      deltachat-ios/AccountSetupController.swift

+ 1 - 1
deltachat-ios/AccountSetupController.swift

@@ -431,7 +431,7 @@ extension AccountSetupController: UITextFieldDelegate {
       // special case: email field should check for potential oAuth
 
       // this will activate passwordTextField if oAuth-Dialogue was canceled
-      passwordCell.textField.becomeFirstResponder()
+      self.passwordCell.textField.becomeFirstResponder()
     }) {
       // all the action is defined in if condition
     } else {