소스 검색

copy genres from MusicArtist to Artist

Luke Pulverenti 12 년 전
부모
커밋
9274f9f35f
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  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)