Use name instead of title for XBMC artist.nfo metadata

This commit is contained in:
Jason Dove 2021-04-11 18:15:45 -05:00 committed by Qstick
parent 8ad76b222b
commit c2adf07834
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ namespace NzbDrone.Core.Extras.Metadata.Consumers.Xbmc
{
var artistElement = new XElement("artist");
artistElement.Add(new XElement("title", artist.Name));
artistElement.Add(new XElement("name", artist.Name));
if (artist.Metadata.Value.Ratings != null && artist.Metadata.Value.Ratings.Votes > 0)
{