mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 05:23:31 -07:00
Fixed: Search results without TV Rage IDs won't match a series without a TV Rage ID
This commit is contained in:
parent
d5da0ec4dd
commit
7e76a36d68
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue