Adds VIN to RePair telemetry config request
All checks were successful
Build, Push and Run Container / build (push) Successful in 29s

Ensures the RePair endpoint includes the VIN in the telemetry config request.
This guarantees that telemetry data is specifically requested for the provided VIN.
This commit is contained in:
2025-08-21 14:59:51 +02:00
parent 576b3b91a4
commit d2e976aee1

View File

@@ -357,7 +357,7 @@ app.MapGet("/RePair", async ([FromServices] ILogger<Configurator> logger, [FromS
TelemetryConfigRequest configRequest = new TelemetryConfigRequest()
{
Vins = new List<string>(),
Vins = new List<string>() { vin },
Config = new TelemetryConfig()
{
Hostname = "tesla-telemetry.automatic-parking.app",