mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-17 21:26:22 -04:00
Fixed: Refreshing movie genres
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user