Marino Faggiana 6 anos atrás
pai
commit
e9d4b0be29
1 arquivos alterados com 2 adições e 8 exclusões
  1. 2 8
      iOSClient/Photos/CCPhotos.m

+ 2 - 8
iOSClient/Photos/CCPhotos.m

@@ -396,17 +396,11 @@
 #pragma mark ===== Delete =====
 #pragma--------------------------------------------------------------------------------------------
 
-- (void)deleteFile:(NSArray *)metadatas e2ee:(BOOL)e2ee tableDirectory:(tableDirectory *)tableDirectory
+- (void)deleteFile:(NSArray *)metadatas e2ee:(BOOL)e2ee
 {
     NSInteger numDelete = metadatas.count;
     __block NSInteger cont = 0;
     
-    if (e2ee) {
-        
-        [[NCNetworkingEndToEnd sharedManager] lockEndToEndFolderEncryptedOnServerUrl:tableDirectory.serverUrl fileID:tableDirectory.fileID user:appDelegate.activeUser userID:appDelegate.activeUserID password:appDelegate.activePassword url:appDelegate.activeUrl];        
-        
-    }
-    
     OCnetworking *ocNetworking = [[OCnetworking alloc] initWithDelegate:nil metadataNet:nil withUser:appDelegate.activeUser withUserID:appDelegate.activeUserID withPassword:appDelegate.activePassword withUrl:appDelegate.activeUrl];
     
     for (tableMetadata *metadata in metadatas) {
@@ -466,7 +460,7 @@
     [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_delete_", nil)
                                                          style:UIAlertActionStyleDestructive
                                                        handler:^(UIAlertAction *action) {
-                                                           [self deleteFile:selectedMetadatas e2ee:false tableDirectory:nil];
+                                                           [self deleteFile:selectedMetadatas e2ee:false];
                                                        }]];
     
     [alertController addAction: [UIAlertAction actionWithTitle:NSLocalizedString(@"_cancel_", nil)