mirror of
https://github.com/Readarr/Readarr.git
synced 2026-03-29 18:14:28 -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;
|
||||
}
|
||||
|
||||
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
|
||||
return searchCriteria.Series;
|
||||
|
||||
Reference in New Issue
Block a user