Skip to content

Commit

Permalink
Fixes #805 - regression in compare with working
Browse files Browse the repository at this point in the history
  • Loading branch information
eamodio committed Jul 30, 2019
1 parent 82418a6 commit aaac484
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

### Fixed

- Fixes [#805](https://github.com/eamodio/vscode-gitlens/issues/805) - Version 9.9.1 breaks working tree comparison

## [9.9.1] - 2019-07-23

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion src/views/nodes/compareResultsNode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export class CompareResultsNode extends SubscribeableViewNode<CompareView> {
this,
this.uri.repoPath!,
this._ref1.ref,
this._ref2.ref || 'HEAD',
this._ref2.ref,
this.getFilesQuery.bind(this)
)
];
Expand Down

0 comments on commit aaac484

Please sign in to comment.