Browse Source

oneByOne for plist to false

Marino Faggiana 8 years ago
parent
commit
42c674100c
2 changed files with 5 additions and 4 deletions
  1. 4 3
      Picker/DocumentPickerViewController.swift
  2. 1 1
      iOSClient/Main/CCMain.m

+ 4 - 3
Picker/DocumentPickerViewController.swift

@@ -187,7 +187,7 @@ class DocumentPickerViewController: UIDocumentPickerExtensionViewController, CCN
                 metadataNet.session = download_session_foreground
                 metadataNet.taskStatus = Int(taskStatusResume)
                 
-                let ocNetworking : OCnetworking = OCnetworking.init(delegate: self, metadataNet: metadataNet, withUser: activeUser, withPassword: activePassword, withUrl: activeUrl, withTypeCloud: typeCloud, oneByOne: true, activityIndicator: false)
+                let ocNetworking : OCnetworking = OCnetworking.init(delegate: self, metadataNet: metadataNet, withUser: activeUser, withPassword: activePassword, withUrl: activeUrl, withTypeCloud: typeCloud, oneByOne: false, activityIndicator: false)
                 networkingOperationQueue.addOperation(ocNetworking)
             }
         }
@@ -253,7 +253,7 @@ class DocumentPickerViewController: UIDocumentPickerExtensionViewController, CCN
         metadataNet.selector = selectorDownloadThumbnail;
         metadataNet.serverUrl = localServerUrl
 
-        let ocNetworking : OCnetworking = OCnetworking.init(delegate: self, metadataNet: metadataNet, withUser: activeUser, withPassword: activePassword, withUrl: activeUrl, withTypeCloud: typeCloud, oneByOne: true, activityIndicator: false)
+        let ocNetworking : OCnetworking = OCnetworking.init(delegate: self, metadataNet: metadataNet, withUser: activeUser, withPassword: activePassword, withUrl: activeUrl, withTypeCloud: typeCloud, oneByOne: false, activityIndicator: false)
         networkingOperationQueue.addOperation(ocNetworking)
     }
 }
@@ -319,8 +319,9 @@ extension DocumentPickerViewController: UITableViewDataSource {
 
         tableView.deselectRow(at: indexPath, animated: true)
         
-        if recordTableMetadata?.cryptated == 0 {
+        if recordTableMetadata!.directory == 0 {
             
+            // Download file
             
         } else {
             

+ 1 - 1
iOSClient/Main/CCMain.m

@@ -1445,7 +1445,7 @@
             metadataNet.session = download_session_foreground;
             metadataNet.taskStatus = taskStatusResume;
             
-            [app addNetworkingOperationQueue:app.netQueue delegate:self metadataNet:metadataNet oneByOne:YES];
+            [app addNetworkingOperationQueue:app.netQueue delegate:self metadataNet:metadataNet oneByOne:NO];
         }
     }
 }