Quellcode durchsuchen

Fixes #1045 - Take UNC path from query instead of uri

main
Mike Surcouf vor 4 Jahren
committed von Eric Amodio
Ursprung
Commit
fe857dcba3
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. +1
    -1
      src/git/gitUri.ts

+ 1
- 1
src/git/gitUri.ts Datei anzeigen

@ -65,7 +65,7 @@ export class GitUri extends ((Uri as any) as UriEx) {
super({
scheme: uri.scheme,
authority: uri.authority,
path: uri.path,
path: data.path,
query: JSON.stringify(data),
fragment: uri.fragment,
});

Laden…
Abbrechen
Speichern