From 838ea196e9fdb6ceb4dfb22fc5b0ef7ab1681eaa Mon Sep 17 00:00:00 2001 From: John Andrews Date: Thu, 30 Jan 2025 18:00:45 +1300 Subject: [PATCH] FF-1981: TV Show Lookup using cache --- .../MovieDb/Genres/GenreIdCollectionMappingExtensions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MetaNodes/ThirdParty/TheMovieDbWrapper/MovieDb/Genres/GenreIdCollectionMappingExtensions.cs b/MetaNodes/ThirdParty/TheMovieDbWrapper/MovieDb/Genres/GenreIdCollectionMappingExtensions.cs index 52aa733c..3dcf80b2 100644 --- a/MetaNodes/ThirdParty/TheMovieDbWrapper/MovieDb/Genres/GenreIdCollectionMappingExtensions.cs +++ b/MetaNodes/ThirdParty/TheMovieDbWrapper/MovieDb/Genres/GenreIdCollectionMappingExtensions.cs @@ -18,7 +18,7 @@ internal static class GenreIdCollectionMappingExtensions { foreach( TVShowInfo tvShow in tvShows ) { - tvShow.Genres = MapGenreIdsToGenres( tvShow.GenreIds, api ); + tvShow.Genres = MapGenreIdsToGenres( tvShow.GenreIds, api ).ToList(); } }