This commit is contained in:
Luke Pulverenti
2014-10-20 16:23:40 -04:00
parent 3be4aa8dc7
commit 1292eccfb5
27 changed files with 827 additions and 600 deletions

View File

@@ -66,7 +66,7 @@ namespace MediaBrowser.XbmcMetadata.Parsers
if (!string.IsNullOrWhiteSpace(val) && movie != null)
{
movie.Artist = val;
movie.Artists.Add(val);
}
break;

View File

@@ -74,9 +74,9 @@ namespace MediaBrowser.XbmcMetadata.Savers
if (musicVideo != null)
{
if (!string.IsNullOrEmpty(musicVideo.Artist))
foreach (var artist in musicVideo.Artists)
{
writer.WriteElementString("artist", musicVideo.Artist);
writer.WriteElementString("artist", artist);
}
if (!string.IsNullOrEmpty(musicVideo.Album))
{