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

This commit is contained in:
Greg Hogan 2023-11-30 10:42:18 -08:00 committed by GitHub
parent 4086795c29
commit 7e0f0165f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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();
}