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

old-commit-hash: 7e0f0165f4
This commit is contained in:
Greg Hogan 2023-11-30 10:42:18 -08:00 committed by GitHub
parent 661132be5a
commit 70c662bf30
1 changed files with 1 additions and 1 deletions

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();
}