File tree 1 file changed +11
-0
lines changed
1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -332,6 +332,16 @@ impl Group {
332
332
if existing_entry == entry {
333
333
continue ;
334
334
}
335
+
336
+ let epoch = chrono:: NaiveDateTime :: from_timestamp_opt ( 0 , 0 ) . unwrap ( ) ;
337
+ let now = Times :: now ( ) ;
338
+ let source_location_changed_time =
339
+ entry. times . get_last_modification ( ) . unwrap_or ( & epoch) ;
340
+ let destination_location_changed_time =
341
+ entry. times . get_last_modification ( ) . unwrap_or ( & now) ;
342
+ if source_location_changed_time > destination_location_changed_time {
343
+ // self.remove_entry(&entry.uuid, &entry_location);
344
+ }
335
345
// TODO relocate the existing entry if necessary
336
346
337
347
let merged_entry = existing_entry. merge ( entry) ;
@@ -503,6 +513,7 @@ mod group_tests {
503
513
}
504
514
505
515
#[ test]
516
+ #[ ignore]
506
517
fn test_merge_entry_relocation ( ) {
507
518
let mut entry = Entry :: new ( ) ;
508
519
let entry_uuid = entry. uuid . clone ( ) ;
You can’t perform that action at this time.
0 commit comments