Skip to content

Commit

Permalink
Merge pull request #1682 from pkuehnel/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
pkuehnel authored Dec 7, 2024
2 parents 35caced + 13595d2 commit c040f15
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,9 @@ public async Task ReconnectWebSocketsForEnabledCars()
var cars = await context.Cars
.Where(c => c.UseFleetTelemetry
&& (c.ShouldBeManaged == true)
&& (c.TeslaFleetApiState != TeslaCarFleetApiState.NotWorking))
&& (c.TeslaFleetApiState != TeslaCarFleetApiState.NotWorking)
&& (c.TeslaFleetApiState != TeslaCarFleetApiState.OpenedLinkButNotTested)
&& (c.TeslaFleetApiState != TeslaCarFleetApiState.NotConfigured))
.Select(c => new { c.Vin, c.UseFleetTelemetryForLocationData, })
.ToListAsync();
var bytesToSend = Encoding.UTF8.GetBytes("Heartbeat");
Expand Down

0 comments on commit c040f15

Please sign in to comment.