Fixed: Don't do title search when adding series from AniList import list

Closes #6140
This commit is contained in:
Mark McDowall 2023-11-09 15:32:40 -08:00
parent 0fe05fb3a9
commit 1e295d81f2
1 changed files with 7 additions and 3 deletions

View File

@ -109,11 +109,15 @@ namespace NzbDrone.Core.ImportLists
var mappedSeries = _seriesSearchService.SearchForNewSeriesByAniListId(item.AniListId)
.FirstOrDefault();
if (mappedSeries != null)
if (mappedSeries == null)
{
item.TvdbId = mappedSeries.TvdbId;
item.Title = mappedSeries.Title;
_logger.Debug("Rejected, unable to find matching TVDB ID for Anilist ID: {0} [{1}]", item.AniListId, item.Title);
continue;
}
item.TvdbId = mappedSeries.TvdbId;
item.Title = mappedSeries.Title;
}
// Map TVDb if we only have a series name