fixed errors on download cleaner when download client is none (#67)

This commit is contained in:
Flaminel
2025-02-24 12:43:06 +02:00
committed by GitHub
parent 51bdaf64e4
commit 5dced28228
@@ -46,6 +46,12 @@ public sealed class DownloadCleaner : GenericHandler
public override async Task ExecuteAsync()
{
if (_downloadClientConfig.DownloadClient is Common.Enums.DownloadClient.None)
{
_logger.LogWarning("download client is set to none");
return;
}
if (_config.Categories?.Count is null or 0)
{
_logger.LogWarning("no categories configured");