File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -3859,11 +3859,11 @@ export class CommandCenter {
3859
3859
const changes = await repository . diffBetween ( commitParentId , commit . hash ) ;
3860
3860
3861
3861
const title = `${ item . shortRef } - ${ commit . message } ` ;
3862
- const multiDiffSourceUri = toGitUri ( Uri . file ( repository . root ) , item . ref , { scheme : 'git-commit' } ) ;
3862
+ const multiDiffSourceUri = toGitUri ( Uri . file ( repository . root ) , commit . hash , { scheme : 'git-commit' } ) ;
3863
3863
3864
3864
const resources : { originalUri : Uri | undefined ; modifiedUri : Uri | undefined } [ ] = [ ] ;
3865
3865
for ( const change of changes ) {
3866
- resources . push ( toMultiFileDiffEditorUris ( change , item . previousRef , item . ref ) ) ;
3866
+ resources . push ( toMultiFileDiffEditorUris ( change , commitParentId , commit . hash ) ) ;
3867
3867
}
3868
3868
3869
3869
return {
You can’t perform that action at this time.
0 commit comments