Skip to content

Commit

Permalink
Fixes gitkraken#1045 - Take UNC path from query instead of uri
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Surcouf committed Nov 24, 2020
1 parent ac10204 commit 3c6d0c2
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 3c6d0c2

Please sign in to comment.