Parcourir la source

Fixes #692 - make remote work with recent versions of Bitbucket Server

main
rozangu1 il y a 5 ans
committed by Eric Amodio
Parent
révision
722a7d213b
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. +2
    -2
      src/git/remotes/bitbucket-server.ts

+ 2
- 2
src/git/remotes/bitbucket-server.ts Voir le fichier

@ -11,8 +11,8 @@ export class BitbucketServerRemote extends RemoteProvider {
}
protected get baseUrl() {
const [project, repo] = this.splitPath();
return `https://${this.domain}/projects/${project}/repos/${repo}`;
const [project, repo] = this.path.startsWith('scm/') ? this.path.replace('scm/', '').split('/') : this.splitPath();
return `${this.protocol}://${this.domain}/projects/${project}/repos/${repo}`;
}
get icon() {

Chargement…
Annuler
Enregistrer