Sfoglia il codice sorgente

Fixes #2304 supports more domain levels for GoogleSource

main
Matt Buckley 2 anni fa
committed by GitHub
parent
commit
07143c8cd7
Non sono state trovate chiavi note per questa firma nel database ID Chiave GPG: 4AEE18F83AFDEB23
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. +2
    -2
      src/git/remotes/google-source.ts

+ 2
- 2
src/git/remotes/google-source.ts Vedi File

@ -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 {

Caricamento…
Annulla
Salva