Merge pull request #1244 from MediaBrowser/master

mark fanart images
This commit is contained in:
Luke 2015-10-31 14:55:15 -04:00
commit a5f2e21ca4

View File

@ -144,7 +144,7 @@ namespace MediaBrowser.Providers.Music
var obj = _jsonSerializer.DeserializeFromFile<FanartArtistResponse>(path);
PopulateImages(list, obj.artistbackground, ImageType.Backdrop, 1920, 1080);
PopulateImages(list, obj.artistthumb, ImageType.Thumb, 500, 281);
PopulateImages(list, obj.artistthumb, ImageType.Primary, 500, 281);
PopulateImages(list, obj.hdmusiclogo, ImageType.Logo, 800, 310);
PopulateImages(list, obj.musicbanner, ImageType.Banner, 1000, 185);
PopulateImages(list, obj.musiclogo, ImageType.Logo, 400, 155);