Marino Faggiana 6 년 전
부모
커밋
de92cb1ea3
2개의 변경된 파일7개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      PickerFileProvider/FileProvider.swift
  2. 6 0
      iOSClient/AppDelegate.m

+ 1 - 1
PickerFileProvider/FileProvider.swift

@@ -91,7 +91,7 @@ class FileProvider: NSFileProviderExtension {
 
                             if (httpResponse.statusCode >= 200 && httpResponse.statusCode < 300) {
                             
-                                NCManageDatabase.sharedInstance.deleteQueueUpload(path: uploadMetadataNet!.path)
+                                NCManageDatabase.sharedInstance.deleteQueueUpload(path: metadataNetQueue!.path)
 
                                 let fields = httpResponse.allHeaderFields
                                 

+ 6 - 0
iOSClient/AppDelegate.m

@@ -1493,11 +1493,17 @@
         if (metadataNet) {
             
             if (metadataNet.path == nil)  {
+                
                 metadataNet = [[NCManageDatabase sharedInstance] getQueueUploadLockWithSelector:selectorUploadFile];
                 [[CCNetworking sharedNetworking] uploadFileFromAssetLocalIdentifier:metadataNet delegate:_activeMain];
                 counterNewUpload++;
+                
             } else {
+                
+                // File Provider Extension [use of path]
+                
                 if ([[UIApplication sharedApplication] applicationState] != UIApplicationStateBackground) {
+                    
                     metadataNet = [[NCManageDatabase sharedInstance] getQueueUploadLockWithSelector:selectorUploadFile];
                     NSString *toPath = [NSString stringWithFormat:@"%@/%@", self.directoryUser, metadataNet.fileName];
                     [CCUtility copyFileAtPath:metadataNet.path toPath:toPath];