fixed missing methods

This commit is contained in:
Flaminel
2025-02-27 21:41:07 +02:00
parent 1243da3d22
commit a994bc4526
5 changed files with 33 additions and 7 deletions
@@ -89,6 +89,9 @@ public sealed class DownloadCleaner : GenericHandler
List<object>? downloadsToClean = _downloadService.FilterDownloadsToBeCleanedAsync(downloads, _config.Categories);
// release unused objects
downloads = null;
_logger.LogTrace("looking for downloads clean");
await _downloadService.CleanDownloadsAsync(downloadsToClean, _config.Categories, _excludedHashes);
}