[Renault] Cockpit/odometer information no longer retrieved #16669 (#16675)

Signed-off-by: dougculnane <doug@culnane.net>
Signed-off-by: Ciprian Pascu <contact@ciprianpascu.ro>
This commit is contained in:
Doug Culnane 2024-04-22 17:10:25 +02:00 committed by Ciprian Pascu
parent 990c4c7d0e
commit a80ad99399

View File

@ -235,7 +235,7 @@ public class MyRenaultHttpSession {
public void getCockpit(Car car) throws RenaultForbiddenException, RenaultUpdateException,
RenaultNotImplementedException, RenaultAPIGatewayException {
JsonObject responseJson = getKamereonResponse("/commerce/v1/accounts/" + kamereonaccountId
+ "/kamereon/kca/car-adapter/v2/cars/" + config.vin + "/cockpit?country=" + getCountry(config));
+ "/kamereon/kca/car-adapter/v1/cars/" + config.vin + "/cockpit?country=" + getCountry(config));
if (responseJson != null) {
car.setCockpit(responseJson);
}