浏览代码

oneByOne for plist to false

Marino Faggiana 8 年之前
父节点
当前提交
42c674100c
共有 2 个文件被更改,包括 5 次插入4 次删除
  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.session = download_session_foreground
                 metadataNet.taskStatus = Int(taskStatusResume)
                 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)
                 networkingOperationQueue.addOperation(ocNetworking)
             }
             }
         }
         }
@@ -253,7 +253,7 @@ class DocumentPickerViewController: UIDocumentPickerExtensionViewController, CCN
         metadataNet.selector = selectorDownloadThumbnail;
         metadataNet.selector = selectorDownloadThumbnail;
         metadataNet.serverUrl = localServerUrl
         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)
         networkingOperationQueue.addOperation(ocNetworking)
     }
     }
 }
 }
@@ -319,8 +319,9 @@ extension DocumentPickerViewController: UITableViewDataSource {
 
 
         tableView.deselectRow(at: indexPath, animated: true)
         tableView.deselectRow(at: indexPath, animated: true)
         
         
-        if recordTableMetadata?.cryptated == 0 {
+        if recordTableMetadata!.directory == 0 {
             
             
+            // Download file
             
             
         } else {
         } else {
             
             

+ 1 - 1
iOSClient/Main/CCMain.m

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