mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-31 12:58:28 +01:00
add reel
This commit is contained in:
@@ -66,7 +66,7 @@ namespace MediaBrowser.XbmcMetadata.Parsers
|
||||
|
||||
if (!string.IsNullOrWhiteSpace(val) && movie != null)
|
||||
{
|
||||
movie.Artist = val;
|
||||
movie.Artists.Add(val);
|
||||
}
|
||||
|
||||
break;
|
||||
|
||||
@@ -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))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user