Procházet zdrojové kódy

Protects against trailing backslash in UNC path

main
Eric Amodio před 4 roky
rodič
revize
5845f4d562
1 změnil soubory, kde provedl 4 přidání a 1 odebrání
  1. +4
    -1
      src/git/gitService.ts

+ 4
- 1
src/git/gitService.ts Zobrazit soubor

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

Načítá se…
Zrušit
Uložit