Skip to content

Commit

Permalink
Remove 12 hour check
Browse files Browse the repository at this point in the history
  • Loading branch information
alexhelms committed Mar 12, 2024
1 parent d8b8cce commit cdaff41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Obspi/Services/AutoRoofCloseHostedService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ protected override async Task OnExecute(AsyncServiceScope scope, CancellationTok
currentTime, sunrise, normalAlertTime, emergencyAlertTime);

// Is it time to start caring about closing the roof?
if (currentTime >= sunrise && currentTime < new TimeOnly(12, 00))
if (currentTime >= sunrise)// && currentTime < new TimeOnly(12, 00))
{
_logger.LogInformation("The sun is coming up, time to close the roof");

Expand Down

0 comments on commit cdaff41

Please sign in to comment.