Fix usenet usage (#46)

This commit is contained in:
Marius Nechifor
2025-01-18 19:12:28 +02:00
committed by GitHub
parent a02be80ac1
commit 209f78717f
@@ -61,11 +61,6 @@ public sealed class QueueCleaner : GenericHandler
QueueRecord record = group.First();
if (record.Protocol is not "torrent")
{
continue;
}
if (!arrClient.IsRecordValid(record))
{
continue;
@@ -73,7 +68,7 @@ public sealed class QueueCleaner : GenericHandler
StalledResult stalledCheckResult = new();
if (_downloadClientConfig.DownloadClient is not Common.Enums.DownloadClient.None)
if (_downloadClientConfig.DownloadClient is not Common.Enums.DownloadClient.None && record.Protocol is "torrent")
{
// stalled download check
stalledCheckResult = await _downloadService.ShouldRemoveFromArrQueueAsync(record.DownloadId);