mirror of
https://github.com/fergalmoran/Readarr.git
synced 2025-12-31 13:59:43 +00:00
Check for empty description as well in ParseQuality
This commit is contained in:
@@ -33,7 +33,7 @@ namespace NzbDrone.Core.Parser
|
||||
{
|
||||
Logger.Debug("Trying to parse quality for '{0}'", name);
|
||||
|
||||
if (name.IsNullOrWhiteSpace())
|
||||
if (name.IsNullOrWhiteSpace() && desc.IsNullOrWhiteSpace())
|
||||
{
|
||||
return new QualityModel { Quality = Quality.Unknown };
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user