mirror of https://github.com/Sonarr/Sonarr
Fixed: Avoid Sqlite Error when all profiles have lowest quality cutoff
This commit is contained in:
parent
3973571411
commit
f05e109b50
|
@ -1,6 +1,7 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using NLog;
|
||||
using NzbDrone.Common.Extensions;
|
||||
using NzbDrone.Core.Datastore;
|
||||
using NzbDrone.Core.Languages;
|
||||
using NzbDrone.Core.Profiles.Qualities;
|
||||
|
@ -43,6 +44,13 @@ namespace NzbDrone.Core.Tv
|
|||
}
|
||||
}
|
||||
|
||||
if (qualitiesBelowCutoff.Empty())
|
||||
{
|
||||
pagingSpec.Records = new List<Episode>();
|
||||
|
||||
return pagingSpec;
|
||||
}
|
||||
|
||||
return _episodeRepository.EpisodesWhereCutoffUnmet(pagingSpec, qualitiesBelowCutoff, languagesBelowCutoff, false);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue