Skip to content

Commit

Permalink
Fix gitkraken#1045 -Take UNC path from query intead of uri
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Surcouf committed Nov 21, 2020
1 parent 236c178 commit 95dc289
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/git/gitUri.ts
Expand Up @@ -65,7 +65,7 @@ export class GitUri extends ((Uri as any) as UriEx) {
super({
scheme: uri.scheme,
authority: uri.authority,
path: uri.path,
path: data.path,
query: JSON.stringify(data),
fragment: uri.fragment,
});
Expand Down

0 comments on commit 95dc289

Please sign in to comment.