copy genres from MusicArtist to Artist
This commit is contained in:
parent
110d1e6fbe
commit
9274f9f35f
|
@ -42,6 +42,7 @@ namespace MediaBrowser.Controller.Providers.Music
|
||||||
target.Tags = source.Tags.ToList();
|
target.Tags = source.Tags.ToList();
|
||||||
target.Overview = source.Overview;
|
target.Overview = source.Overview;
|
||||||
target.ProductionLocations = source.ProductionLocations.ToList();
|
target.ProductionLocations = source.ProductionLocations.ToList();
|
||||||
|
target.Genres = source.Genres.ToList();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void ProcessAlbumData(BaseItem item, LastfmAlbum data)
|
public static void ProcessAlbumData(BaseItem item, LastfmAlbum data)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user