소스 검색

Protects against trailing backslash in UNC path

main
Eric Amodio 4 년 전
부모
커밋
5845f4d562
1개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
  1. +4
    -1
      src/git/gitService.ts

+ 4
- 1
src/git/gitService.ts 파일 보기

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

불러오는 중...
취소
저장