Browse Source

copy genres from MusicArtist to Artist

Luke Pulverenti 12 years ago
parent
commit
9274f9f35f
1 changed files with 1 additions and 0 deletions
  1. 1 0
      MediaBrowser.Controller/Providers/Music/LastfmHelper.cs

+ 1 - 0
MediaBrowser.Controller/Providers/Music/LastfmHelper.cs

@@ -42,6 +42,7 @@ namespace MediaBrowser.Controller.Providers.Music
             target.Tags = source.Tags.ToList();
             target.Overview = source.Overview;
             target.ProductionLocations = source.ProductionLocations.ToList();
+            target.Genres = source.Genres.ToList();
         }
         
         public static void ProcessAlbumData(BaseItem item, LastfmAlbum data)