Marino Faggiana 8 years ago
parent
commit
034b216590
2 changed files with 3 additions and 2 deletions
  1. 1 0
      iOSClient/Move/CCMove.m
  2. 2 2
      iOSClient/Offline/CCSynchronize.m

+ 1 - 0
iOSClient/Move/CCMove.m

@@ -82,6 +82,7 @@
 
     // TableView : at the end of rows nothing
     self.tableView.tableFooterView = [UIView new];
+    self.tableView.separatorColor = COLOR_SEPARATOR_TABLE;
 
     [self.cancel setTitle:NSLocalizedString(@"_cancel_", nil)];
     [self.create setTitle:NSLocalizedString(@"_create_folder_", nil)];

+ 2 - 2
iOSClient/Offline/CCSynchronize.m

@@ -331,12 +331,12 @@
         
         if (offline) {
             
-            if (![record.rev isEqualToString:metadata.rev ])
+            if (![record.rev isEqualToString:metadata.rev])
                 changeRev = YES;
             
         } else {
             
-            if (record && ![record.rev isEqualToString:metadata.rev ])
+            if (record && ![record.rev isEqualToString:metadata.rev])
                 changeRev = YES;
         }