Fix queue items with no title not being processed (#54)

This commit is contained in:
Marius Nechifor
2025-02-02 18:20:42 +02:00
committed by GitHub
parent c813215f3e
commit e738ba2334
@@ -145,12 +145,6 @@ public abstract class ArrClient
return false; return false;
} }
if (record.DownloadId.Equals(record.Title, StringComparison.InvariantCultureIgnoreCase))
{
_logger.LogDebug("skip | item is not ready yet | {title}", record.Title);
return false;
}
return true; return true;
} }