@@ -241,9 +241,9 @@ public void SetData(List<Models.Change> changes)
241
241
else if ( File . Exists ( Path . Combine ( _repo . GitDir , "REBASE_HEAD" ) ) && Directory . Exists ( Path . Combine ( _repo . GitDir , "rebase-merge" ) ) )
242
242
inProgress = new RebaseInProgress ( _repo ) ;
243
243
else if ( File . Exists ( Path . Combine ( _repo . GitDir , "REVERT_HEAD" ) ) )
244
- inProgress = new RevertInProgress ( _repo . FullPath ) ;
244
+ inProgress = new RevertInProgress ( _repo ) ;
245
245
else if ( File . Exists ( Path . Combine ( _repo . GitDir , "MERGE_HEAD" ) ) )
246
- inProgress = new MergeInProgress ( _repo . FullPath ) ;
246
+ inProgress = new MergeInProgress ( _repo ) ;
247
247
248
248
HasUnsolvedConflicts = _cached . Find ( x => x . IsConflit ) != null ;
249
249
InProgressContext = inProgress ;
@@ -314,9 +314,9 @@ public void SetData(List<Models.Change> changes)
314
314
else if ( File . Exists ( Path . Combine ( _repo . GitDir , "REBASE_HEAD" ) ) && Directory . Exists ( Path . Combine ( _repo . GitDir , "rebase-merge" ) ) )
315
315
inProgress = new RebaseInProgress ( _repo ) ;
316
316
else if ( File . Exists ( Path . Combine ( _repo . GitDir , "REVERT_HEAD" ) ) )
317
- inProgress = new RevertInProgress ( _repo . FullPath ) ;
317
+ inProgress = new RevertInProgress ( _repo ) ;
318
318
else if ( File . Exists ( Path . Combine ( _repo . GitDir , "MERGE_HEAD" ) ) )
319
- inProgress = new MergeInProgress ( _repo . FullPath ) ;
319
+ inProgress = new MergeInProgress ( _repo ) ;
320
320
321
321
InProgressContext = inProgress ;
322
322
0 commit comments