Sfoglia il codice sorgente

Protects against trailing backslash in UNC path

main
Eric Amodio 4 anni fa
parent
commit
5845f4d562
1 ha cambiato i file con 4 aggiunte e 1 eliminazioni
  1. +4
    -1
      src/git/gitService.ts

+ 4
- 1
src/git/gitService.ts Vedi File

@ -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 {}

Caricamento…
Annulla
Salva