Просмотр исходного кода

Fixes non-enterprise GitHub api call regression

main
Eric Amodio 2 лет назад
Родитель
Сommit
3e0d329581
1 измененных файлов: 1 добавлений и 1 удалений
  1. +1
    -1
      src/git/remotes/github.ts

+ 1
- 1
src/git/remotes/github.ts Просмотреть файл

@ -35,7 +35,7 @@ export class GitHubRemote extends RichRemoteProvider {
}
get apiBaseUrl() {
return this.custom ? `${this.protocol}://${this.domain}/api/v3` : `https://${this.domain}/api/v3`;
return this.custom ? `${this.protocol}://${this.domain}/api/v3` : `https://api.${this.domain}`;
}
private _autolinks: (AutolinkReference | DynamicAutolinkReference)[] | undefined;

Загрузка…
Отмена
Сохранить