mirror of
https://github.com/Radarr/Radarr
synced 2024-12-25 17:27:59 +00:00
Fixed: Invalid qualities messing up the release module and other stuff.
This commit is contained in:
parent
587b49aaba
commit
253546ded0
1 changed files with 6 additions and 2 deletions
|
@ -212,11 +212,15 @@ public static explicit operator int(Quality quality)
|
||||||
return quality.Id;
|
return quality.Id;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//TODO: Go back to fully parsing the quality from the start!
|
||||||
public static Quality FindByInfo(Source source, Resolution resolution, Modifier modifier)
|
public static Quality FindByInfo(Source source, Resolution resolution, Modifier modifier)
|
||||||
{
|
{
|
||||||
return All.SingleOrDefault(q =>
|
return All.SingleOrDefault(q =>
|
||||||
q.Source == source && ((q.Resolution == resolution) ||
|
q.Source == source && ((q.Resolution == resolution) ||
|
||||||
(q.Resolution == Resolution.Unknown)) && (q.Modifier == modifier));
|
(q.Resolution == Resolution.Unknown)) && (q.Modifier == modifier)) ??
|
||||||
|
All.FirstOrDefault(q => q.Source == source && ((q.Resolution == resolution) ||
|
||||||
|
(q.Resolution == Resolution.Unknown))) ??
|
||||||
|
Unknown;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue