marinofaggiana 5 years ago
parent
commit
a126f75635
2 changed files with 5 additions and 1 deletions
  1. 2 0
      iOSClient/AppDelegate.h
  2. 3 1
      iOSClient/AppDelegate.m

+ 2 - 0
iOSClient/AppDelegate.h

@@ -111,6 +111,8 @@
 @property (nonatomic, strong) NSMutableArray *arrayDeleteMetadata;
 @property (nonatomic, strong) NSMutableArray *arrayMoveMetadata;
 @property (nonatomic, strong) NSMutableArray *arrayMoveServerUrlTo;
+@property (nonatomic, strong) NSMutableArray *arrayCopyMetadata;
+@property (nonatomic, strong) NSMutableArray *arrayCopyServerUrlTo;
 
 @property (nonatomic) UIUserInterfaceStyle preferredUserInterfaceStyle API_AVAILABLE(ios(12.0));
 

+ 3 - 1
iOSClient/AppDelegate.m

@@ -86,7 +86,9 @@
     self.arrayDeleteMetadata = [NSMutableArray new];
     self.arrayMoveMetadata = [NSMutableArray new];
     self.arrayMoveServerUrlTo = [NSMutableArray new];
-
+    self.arrayCopyMetadata = [NSMutableArray new];
+    self.arrayCopyServerUrlTo = [NSMutableArray new];
+    
     // Push Notification
     [application registerForRemoteNotifications];