File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -389,7 +389,8 @@ public async void UseTheirs(List<Models.Change> changes)
389389 continue ;
390390
391391 if ( change . ConflictReason == Models . ConflictReason . BothDeleted ||
392- change . ConflictReason == Models . ConflictReason . DeletedByThem )
392+ change . ConflictReason == Models . ConflictReason . DeletedByThem ||
393+ change . ConflictReason == Models . ConflictReason . AddedByUs )
393394 {
394395 var fullpath = Path . Combine ( _repo . FullPath , change . Path ) ;
395396 if ( File . Exists ( fullpath ) )
@@ -432,7 +433,8 @@ public async void UseMine(List<Models.Change> changes)
432433 continue ;
433434
434435 if ( change . ConflictReason == Models . ConflictReason . BothDeleted ||
435- change . ConflictReason == Models . ConflictReason . DeletedByUs )
436+ change . ConflictReason == Models . ConflictReason . DeletedByUs ||
437+ change . ConflictReason == Models . ConflictReason . AddedByThem )
436438 {
437439 var fullpath = Path . Combine ( _repo . FullPath , change . Path ) ;
438440 if ( File . Exists ( fullpath ) )
You can’t perform that action at this time.
0 commit comments