mirror of
https://github.com/Readarr/Readarr
synced 2025-12-16 05:12:42 +01:00
Check for empty description as well in ParseQuality
This commit is contained in:
parent
f5c2a6bf51
commit
1a30293c33
1 changed files with 1 additions and 1 deletions
|
|
@ -33,7 +33,7 @@ public static QualityModel ParseQuality(string name, string desc = null, List<in
|
|||
{
|
||||
Logger.Debug("Trying to parse quality for '{0}'", name);
|
||||
|
||||
if (name.IsNullOrWhiteSpace())
|
||||
if (name.IsNullOrWhiteSpace() && desc.IsNullOrWhiteSpace())
|
||||
{
|
||||
return new QualityModel { Quality = Quality.Unknown };
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue