Skip to content

Commit 15d57bc

Browse files
committed
Fixes uri parsing issue
1 parent 360e680 commit 15d57bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/git/gitUri.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export class GitUri extends ((Uri as any) as UriEx) {
4444
constructor(uri: Uri, repoPath: string | undefined);
4545
constructor(uri?: Uri, commitOrRepoPath?: GitCommitish | string) {
4646
if (uri == null) {
47-
super();
47+
super('unknown', '', '', '', '');
4848

4949
return;
5050
}

0 commit comments

Comments
 (0)