ADded submath support in one missed place (#1156)

Co-authored-by: Jesús Espino <jespinog@gmail.com>
This commit is contained in:
Harshil Sharma 2021-09-09 15:35:30 +05:30 committed by GitHub
parent d4dd403e48
commit add57216a7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -86,7 +86,7 @@ class OctoClient {
async getClientConfig(): Promise<ClientConfig | null> {
const path = '/api/v1/clientConfig'
const response = await fetch(this.serverUrl + path, {
const response = await fetch(this.getBaseURL() + path, {
method: 'GET',
headers: this.headers(),
})