fix: apiBase not including api version when automatically fetched
This commit is contained in:
parent
115b7d8341
commit
9a84315b64
1 changed files with 1 additions and 1 deletions
|
@ -67,7 +67,7 @@ if (status.value == "success" && gorbTxt.value) {
|
|||
console.log("got gorb.txt:", gorbTxt.value);
|
||||
const parsed = parseWellKnown(gorbTxt.value as string);
|
||||
if (parsed.ApiBaseUrl) {
|
||||
apiBase.value = parsed.ApiBaseUrl;
|
||||
apiBase.value = `${parsed.ApiBaseUrl}/${apiVersion}`;
|
||||
console.log("set apiBase to:", parsed.ApiBaseUrl);
|
||||
}
|
||||
} else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue