mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-18 21:35:51 -04:00
Fixed: Search results without TV Rage IDs won't match a series without a TV Rage ID
This commit is contained in:
@@ -340,7 +340,7 @@ namespace NzbDrone.Core.Parser
|
|||||||
return searchCriteria.Series;
|
return searchCriteria.Series;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (tvRageId == searchCriteria.Series.TvRageId)
|
if (tvRageId > 0 && tvRageId == searchCriteria.Series.TvRageId)
|
||||||
{
|
{
|
||||||
//TODO: If series is found by TvRageId, we should report it as a scene naming exception, since it will fail to import
|
//TODO: If series is found by TvRageId, we should report it as a scene naming exception, since it will fail to import
|
||||||
return searchCriteria.Series;
|
return searchCriteria.Series;
|
||||||
|
|||||||
Reference in New Issue
Block a user