소스 검색

support for non https remotes

main
Helmut Januschka 7 년 전
committed by Eric Amodio
부모
커밋
dcfc6626d4
1개의 변경된 파일3개의 추가작업 그리고 2개의 파일을 삭제
  1. +3
    -2
      src/git/remotes/provider.ts

+ 3
- 2
src/git/remotes/provider.ts 파일 보기

@ -40,6 +40,7 @@ export abstract class RemoteProvider {
public readonly domain: string,
public readonly path: string,
name?: string,
public readonly protocol: string = 'https'
public readonly custom: boolean = false
) {
this._name = name;
@ -48,7 +49,7 @@ export abstract class RemoteProvider {
abstract get name(): string;
protected get baseUrl() {
return `https://${this.domain}/${this.path}`;
return `${this.protocol}://${this.domain}/${this.path}`;
}
protected formatName(name: string) {
@ -105,4 +106,4 @@ export abstract class RemoteProvider {
openFile(fileName: string, branch?: string, sha?: string, range?: Range) {
return this.openUrl(this.getUrlForFile(fileName, branch, sha, range));
}
}
}

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