replay: get api url from env var (#30562)

old-commit-hash: 7e0f0165f4a036760cb3a0c179facffbe39e15ad
This commit is contained in:
Greg Hogan
2023-11-30 10:42:18 -08:00
committed by GitHub
parent 661132be5a
commit 70c662bf30

View File

@@ -44,7 +44,7 @@ bool Route::loadFromServer() {
loop.exit(success ? loadFromJson(json) : 0);
});
http.sendRequest("https://api.commadotai.com/v1/route/" + route_.str + "/files");
http.sendRequest(CommaApi::BASE_URL + "/v1/route/" + route_.str + "/files");
return loop.exec();
}