Explorar el Código

Fixes uri parsing issue

main
Eric Amodio hace 5 años
padre
commit
15d57bc797
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      src/git/gitUri.ts

+ 1
- 1
src/git/gitUri.ts Ver fichero

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

Cargando…
Cancelar
Guardar