Quellcode durchsuchen

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

main
rozangu1 vor 5 Jahren
committed von Eric Amodio
Ursprung
Commit
722a7d213b
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  1. +2
    -2
      src/git/remotes/bitbucket-server.ts

+ 2
- 2
src/git/remotes/bitbucket-server.ts Datei anzeigen

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

Laden…
Abbrechen
Speichern