mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-19 04:59:35 -07:00
Check for empty description as well in ParseQuality
This commit is contained in:
parent
44add0d884
commit
44824df7e4
1 changed files with 1 additions and 1 deletions
|
@ -48,7 +48,7 @@ namespace NzbDrone.Core.Parser
|
||||||
{
|
{
|
||||||
Logger.Debug("Trying to parse quality for '{0}'", name);
|
Logger.Debug("Trying to parse quality for '{0}'", name);
|
||||||
|
|
||||||
if (name.IsNullOrWhiteSpace())
|
if (name.IsNullOrWhiteSpace() && desc.IsNullOrWhiteSpace())
|
||||||
{
|
{
|
||||||
return new QualityModel { Quality = Quality.Unknown };
|
return new QualityModel { Quality = Quality.Unknown };
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue