소스 검색

Fixes #2304 supports more domain levels for GoogleSource

main
Matt Buckley 2 년 전
committed by GitHub
부모
커밋
07143c8cd7
No known key found for this signature in database GPG 키 ID: 4AEE18F83AFDEB23
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      src/git/remotes/google-source.ts

+ 2
- 2
src/git/remotes/google-source.ts 파일 보기

@ -18,8 +18,8 @@ export class GoogleSourceRemote extends GerritRemote {
}
private get reviewDomain(): string {
const [subdomain, secondLevelDomain, topLevelDomain] = this.domain.split('.');
return [`${subdomain}-review`, secondLevelDomain, topLevelDomain].join('.');
const [subdomain, ...domains] = this.domain.split('.');
return [`${subdomain}-review`, ...domains].join('.');
}
protected override get baseReviewUrl(): string {

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