1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-04 10:34:59 +02:00

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

View File

@ -183,7 +183,7 @@ public override MetadataFileResult SeriesMetadata(Series series)
if (series.Tags.Any())
{
var tags = _tagRepo.Get(series.Tags);
var tags = _tagRepo.GetTags(series.Tags);
foreach (var tag in tags)
{