Procházet zdrojové kódy

fixed error - self was missing in closure

Bastian van de Wetering před 6 roky
rodič
revize
05fb32c4e0
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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 {