ソースを参照

Fixes #2304 supports more domain levels for GoogleSource

main
Matt Buckley 2年前
committed by GitHub
コミット
07143c8cd7
この署名に対応する既知のキーがデータベースに存在しません 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 {

読み込み中…
キャンセル
保存