@@ -241,9 +241,9 @@ public void SetData(List<Models.Change> changes)
241241 else if ( File . Exists ( Path . Combine ( _repo . GitDir , "REBASE_HEAD" ) ) && Directory . Exists ( Path . Combine ( _repo . GitDir , "rebase-merge" ) ) )
242242 inProgress = new RebaseInProgress ( _repo ) ;
243243 else if ( File . Exists ( Path . Combine ( _repo . GitDir , "REVERT_HEAD" ) ) )
244- inProgress = new RevertInProgress ( _repo . FullPath ) ;
244+ inProgress = new RevertInProgress ( _repo ) ;
245245 else if ( File . Exists ( Path . Combine ( _repo . GitDir , "MERGE_HEAD" ) ) )
246- inProgress = new MergeInProgress ( _repo . FullPath ) ;
246+ inProgress = new MergeInProgress ( _repo ) ;
247247
248248 HasUnsolvedConflicts = _cached . Find ( x => x . IsConflit ) != null ;
249249 InProgressContext = inProgress ;
@@ -314,9 +314,9 @@ public void SetData(List<Models.Change> changes)
314314 else if ( File . Exists ( Path . Combine ( _repo . GitDir , "REBASE_HEAD" ) ) && Directory . Exists ( Path . Combine ( _repo . GitDir , "rebase-merge" ) ) )
315315 inProgress = new RebaseInProgress ( _repo ) ;
316316 else if ( File . Exists ( Path . Combine ( _repo . GitDir , "REVERT_HEAD" ) ) )
317- inProgress = new RevertInProgress ( _repo . FullPath ) ;
317+ inProgress = new RevertInProgress ( _repo ) ;
318318 else if ( File . Exists ( Path . Combine ( _repo . GitDir , "MERGE_HEAD" ) ) )
319- inProgress = new MergeInProgress ( _repo . FullPath ) ;
319+ inProgress = new MergeInProgress ( _repo ) ;
320320
321321 InProgressContext = inProgress ;
322322
0 commit comments