Fixes incorrect file selection when showing commit details

This commit is contained in:
Eric Amodio
2017-05-01 13:19:09 -04:00
parent 187f7881ca
commit 474741aeb4

View File

@@ -54,7 +54,7 @@ export class ShowQuickCommitFileDetailsCommand extends ActiveEditorCachedCommand
} }
if (!fileLog) { if (!fileLog) {
commit = await this.git.getLogCommit(commit ? commit.repoPath : gitUri.repoPath, commit ? commit.uri.fsPath : gitUri.fsPath, sha, { previous: true }); commit = await this.git.getLogCommit(commit ? commit.repoPath : gitUri.repoPath, gitUri.fsPath, sha, { previous: true });
if (!commit) return window.showWarningMessage(`Unable to show commit file details`); if (!commit) return window.showWarningMessage(`Unable to show commit file details`);
} }
} }