Explorar el Código

Protects against trailing backslash in UNC path

main
Eric Amodio hace 4 años
padre
commit
5845f4d562
Se han modificado 1 ficheros con 4 adiciones y 1 borrados
  1. +4
    -1
      src/git/gitService.ts

+ 4
- 1
src/git/gitService.ts Ver fichero

@ -2675,7 +2675,10 @@ export class GitService implements Disposable {
);
if (networkPath !== undefined) {
return Strings.normalizePath(
repoUri.fsPath.replace(networkPath, `${letter.toLowerCase()}:`),
repoUri.fsPath.replace(
networkPath,
`${letter.toLowerCase()}:${networkPath.endsWith('\\') ? '\\' : ''}`,
),
);
}
} catch {}

Cargando…
Cancelar
Guardar