Przeglądaj źródła

Fixes uri parsing issue

main
Eric Amodio 6 lat temu
rodzic
commit
15d57bc797
1 zmienionych plików z 1 dodań i 1 usunięć
  1. +1
    -1
      src/git/gitUri.ts

+ 1
- 1
src/git/gitUri.ts Wyświetl plik

@ -44,7 +44,7 @@ export class GitUri extends ((Uri as any) as UriEx) {
constructor(uri: Uri, repoPath: string | undefined); constructor(uri: Uri, repoPath: string | undefined);
constructor(uri?: Uri, commitOrRepoPath?: GitCommitish | string) { constructor(uri?: Uri, commitOrRepoPath?: GitCommitish | string) {
if (uri == null) { if (uri == null) {
super();
super('unknown', '', '', '', '');
return; return;
} }

Ładowanie…
Anuluj
Zapisz