mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-24 22:35:39 -04:00
Fixed: Performance issues when processing results from indexers (RSS/Search)
This commit is contained in:
@@ -22,7 +22,7 @@ namespace NzbDrone.Core.Qualities
|
||||
{
|
||||
try
|
||||
{
|
||||
return Query.Single(q => (int)q.Quality == qualityId);
|
||||
return Query.Where(q => (int) q.Quality == qualityId).Single();
|
||||
}
|
||||
catch (InvalidOperationException e)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user