Skip to content

Commit

Permalink
Fixed: Ignore invalid movie tags when writing XBMC metadata
Browse files Browse the repository at this point in the history
Co-authored-by: Bogdan <mynameisbogdan@users.noreply.github.com>
  • Loading branch information
markus101 and mynameisbogdan committed May 9, 2024
1 parent cc0a284 commit b4d0521
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down

0 comments on commit b4d0521

Please sign in to comment.