mirror of
https://github.com/Readarr/Readarr.git
synced 2026-02-05 19:52:09 -05:00
Check for empty description as well in ParseQuality
This commit is contained in:
@@ -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 };
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user