Просмотр исходного кода

Protects against trailing backslash in UNC path

main
Eric Amodio 4 лет назад
Родитель
Сommit
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 {}

Загрузка…
Отмена
Сохранить