mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-16 10:03:51 -07: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 @@ namespace NzbDrone.Core.Extras.Metadata.Consumers.Xbmc
|
||||||
{
|
{
|
||||||
var artistElement = new XElement("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)
|
if (artist.Metadata.Value.Ratings != null && artist.Metadata.Value.Ratings.Votes > 0)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue