marinofaggiana 4 năm trước cách đây
mục cha
commit
1a1ddc891b

+ 4 - 0
iOSClient/Main/Account Request/NCAccountRequest.swift

@@ -127,6 +127,10 @@ extension NCAccountRequest: UITableViewDelegate {
         if account.account != appDelegate.account {
             NCManageDatabase.shared.setAccountActive(account.account)
             dismiss(animated: true) {
+                
+                NCNetworking.shared.cancelAllTask()
+                NCOperationQueue.shared.cancelAllQueue()
+                
                 self.appDelegate.settingAccount(account.account, urlBase: account.urlBase, user: account.user, userId: account.userId, password: CCUtility.getPassword(account.account))
                 
                 NotificationCenter.default.postOnMainThread(name: NCGlobal.shared.notificationCenterInitializeMain)

+ 16 - 0
iOSClient/Networking/NCNetworking.swift

@@ -234,6 +234,22 @@ import Queuer
         return result
     }
         
+    //MARK: - Utility
+    
+    func cancelTaskWithUrl(_ url: URL) {
+        NCCommunication.shared.getSessionManager().getAllTasks  { tasks in
+            tasks.filter { $0.state == .running }.filter { $0.originalRequest?.url == url }.first?.cancel()
+        }
+    }
+    
+    func cancelAllTask() {
+        NCCommunication.shared.getSessionManager().getAllTasks  { tasks in
+            for task in tasks {
+                task.cancel()
+            }
+        }
+    }
+    
     //MARK: - Download
     
     @objc func cancelDownload(ocId: String, serverUrl:String, fileNameView: String) {