mirror of
https://github.com/Radarr/Radarr
synced 2025-12-28 19:24:53 +01:00
Fixed: Rare case of RequiredIndexerFlags failing with old Newznab indexers.
This commit is contained in:
parent
ca3d5c184e
commit
73fed04228
1 changed files with 1 additions and 1 deletions
|
|
@ -86,7 +86,7 @@ public Decision IsSatisfiedBy(RemoteMovie remoteEpisode, SearchCriteriaBase sear
|
|||
var requiredFlags = torrentIndexerSettings.RequiredFlags;
|
||||
var requiredFlag = (IndexerFlags) 0;
|
||||
|
||||
if (requiredFlags.Count() == 0)
|
||||
if (requiredFlags == null || requiredFlags.Count() == 0)
|
||||
{
|
||||
return Decision.Accept();
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue