Fixes issue with file history working tree compare

Would occur when the filename had changed
This commit is contained in:
Eric Amodio
2017-01-16 12:55:22 -05:00
parent d2ad2b6a0f
commit ff8b184bef
3 changed files with 5 additions and 2 deletions

View File

@@ -1,6 +1,9 @@
---
## Release Notes
### 1.4.2
- Fixes issue where file history wouldn't compare correctly to working tree if the filename had changed
### 1.4.1
- Adds `gitlens.advanced.gitignore.enabled` to enable/disable .gitignore parsing. Addresses [#20](https://github.com/eamodio/vscode-gitlens/issues/20) - Nested .gitignore files can cause blame to fail with a repo within another repo

View File

@@ -1,6 +1,6 @@
{
"name": "gitlens",
"version": "1.4.1",
"version": "1.4.2",
"author": {
"name": "Eric Amodio",
"email": "eamodio@gmail.com"

View File

@@ -76,7 +76,7 @@ export default class ShowQuickFileHistoryCommand extends EditorCommand {
}
if (command) {
return commands.executeCommand(command, commit.uri, commit);
return commands.executeCommand(command, uri, commit);
}
}
catch (ex) {