Fixed: Ignore invalid movie tags when writing XBMC metadata

Co-authored-by: Bogdan <mynameisbogdan@users.noreply.github.com>
This commit is contained in:
Mark McDowall 2024-05-07 20:47:44 -07:00 committed by Mark McDowall
parent cc0a284660
commit b4d05214ae
1 changed files with 1 additions and 1 deletions

View File

@ -183,7 +183,7 @@ namespace NzbDrone.Core.Extras.Metadata.Consumers.Xbmc
if (series.Tags.Any())
{
var tags = _tagRepo.Get(series.Tags);
var tags = _tagRepo.GetTags(series.Tags);
foreach (var tag in tags)
{