mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02: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