Fixed: Refreshing movie genres

pull/10743/head
Bogdan 2 months ago
parent 7b9562bb38
commit 6c47ede76b

@ -275,7 +275,6 @@ namespace NzbDrone.Core.MetadataSource.SkyHook
movie.Genres = resource.Genres;
movie.Images = resource.Images.Select(MapImage).ToList();
// movie.Genres = resource.Genres;
movie.Recommendations = resource.Recommendations?.Select(r => r.TmdbId).ToList() ?? new List<int>();
// Workaround due to metadata change until cache cleans up

@ -117,8 +117,7 @@ namespace NzbDrone.Core.Movies
movieMetadata.LastInfoSync = DateTime.UtcNow;
movieMetadata.Runtime = movieInfo.Runtime;
movieMetadata.Ratings = movieInfo.Ratings;
// movie.Genres = movieInfo.Genres;
movieMetadata.Genres = movieInfo.Genres;
movieMetadata.Certification = movieInfo.Certification;
movieMetadata.InCinemas = movieInfo.InCinemas;
movieMetadata.Website = movieInfo.Website;

Loading…
Cancel
Save