Marino Faggiana %!s(int64=7) %!d(string=hai) anos
pai
achega
b3e731fd3f
Modificáronse 1 ficheiros con 16 adicións e 8 borrados
  1. 16 8
      iOSClient/Login/CCLoginWeb.swift

+ 16 - 8
iOSClient/Login/CCLoginWeb.swift

@@ -86,16 +86,25 @@ extension CCLoginWeb: SwiftModalWebVCDelegate {
                 
                     if (loginType == loginModifyPasswordUser && NCBrandOptions.sharedInstance.use_login_web_flow) {
                         
-                        // Change Password
-                        guard let tableAccount = NCManageDatabase.sharedInstance.setAccountPassword(account, password: password) else {
+                        // Verify if change the active account
+                        guard let activeAccount = NCManageDatabase.sharedInstance.getAccountActive() else {
+                            self.viewController?.dismiss(animated: true, completion: nil)
+                            return
+                        }
+                        if (activeAccount.account != account) {
+                            self.viewController?.dismiss(animated: true, completion: nil)
                             return
                         }
                         
-                        if (tableAccount.account == account) {
-                            appDelegate.settingActiveAccount(account, activeUrl: serverUrl, activeUser: username, activeUserID: tableAccount.userID, activePassword: password)
+                        // Change Password
+                        guard let tableAccount = NCManageDatabase.sharedInstance.setAccountPassword(account, password: password) else {
+                            self.viewController?.dismiss(animated: true, completion: nil)
+                            return
                         }
                         
+                        appDelegate.settingActiveAccount(account, activeUrl: serverUrl, activeUser: username, activeUserID: tableAccount.userID, activePassword: password)
                         self.delegate?.loginSuccess(NSInteger(loginType.rawValue))
+                        
                         self.viewController?.dismiss(animated: true, completion: nil)
                     }
                     
@@ -106,14 +115,13 @@ extension CCLoginWeb: SwiftModalWebVCDelegate {
                         NCManageDatabase.sharedInstance.addAccount(account, url: serverUrl, user: username, password: password, loginFlow: true)
                         
                         guard let tableAccount = NCManageDatabase.sharedInstance.setAccountActive(account) else {
+                            self.viewController?.dismiss(animated: true, completion: nil)
                             return
                         }
                         
-                        if (tableAccount.account == account) {
-                            appDelegate.settingActiveAccount(account, activeUrl: serverUrl, activeUser: username, activeUserID: tableAccount.userID, activePassword: password)
-                        }
-                        
+                        appDelegate.settingActiveAccount(account, activeUrl: serverUrl, activeUser: username, activeUserID: tableAccount.userID, activePassword: password)
                         self.delegate?.loginSuccess(NSInteger(loginType.rawValue))
+                        
                         self.viewController?.dismiss(animated: true, completion: nil)
                     }
                 }