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

Closes #6140
pull/6164/head
Mark McDowall 8 months ago
parent 0fe05fb3a9
commit 1e295d81f2

@ -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

Loading…
Cancel
Save