1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2024-12-28 02:27:13 +00:00

Fixed: Manually triggering Check Health will now also run health checks that normally only run on startup.

This commit is contained in:
Taloth Saldono 2015-01-25 21:10:27 +01:00
parent 6e179839d9
commit a058333f65

View file

@ -94,7 +94,7 @@ public void HandleAsync(ApplicationStartedEvent message)
public void Execute(CheckHealthCommand message)
{
PerformHealthCheck(c => c.CheckOnSchedule);
PerformHealthCheck(c => message.Manual || c.CheckOnSchedule);
}
}
}