Skip to content

Commit ba412ef

Browse files
authored
Merge pull request #11075 from gitbutlerapp/ghe-fix
Actually use the GitHub host base URL
2 parents 0f513e1 + c643785 commit ba412ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/desktop/src/lib/forge/github/githubClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export class GitHubClient implements ApiClient {
5757

5858
get octokit(): Octokit {
5959
if (!this._client) {
60-
this._client = newClient(this._token);
60+
this._client = newClient(this._token, this._host);
6161
}
6262
return this._client;
6363
}

0 commit comments

Comments
 (0)