mirror of
https://github.com/Lidarr/Lidarr
synced 2025-12-14 12:24:06 +01:00
Use name instead of title for XBMC artist.nfo metadata
This commit is contained in:
parent
8ad76b222b
commit
c2adf07834
1 changed files with 1 additions and 1 deletions
|
|
@ -114,7 +114,7 @@ public override MetadataFileResult ArtistMetadata(Artist artist)
|
|||
{
|
||||
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)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue