Browse Source

Fixes issue w/ explore repo rev in latest vscode

main
Eric Amodio 5 years ago
parent
commit
d9a3b0e8cd
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      src/views/viewCommands.ts

+ 4
- 0
src/views/viewCommands.ts View File

@ -504,6 +504,10 @@ export class ViewCommands {
private exploreRepoRevision(node: ViewRefNode, options: { openInNewWindow?: boolean } = {}) {
if (!(node instanceof ViewRefNode)) return;
if (options == null) {
options = {};
}
const uri = toGitLensFSUri(node.ref, node.repoPath);
const gitUri = GitUri.fromRevisionUri(uri);

Loading…
Cancel
Save