Fixed: Don't die in Collections when a collection doesn't have movies

pull/9288/head
Bogdan 12 months ago
parent ecfaea3885
commit 9b36404071

@ -159,6 +159,8 @@ namespace Radarr.Api.V3.Collections
allCollectionMovies.TryGetValue(collection.TmdbId, out var collectionMovies); allCollectionMovies.TryGetValue(collection.TmdbId, out var collectionMovies);
if (collectionMovies != null)
{
foreach (var movie in collectionMovies) foreach (var movie in collectionMovies)
{ {
var translation = GetTranslationFromDict(tdict, movie, configLanguage); var translation = GetTranslationFromDict(tdict, movie, configLanguage);
@ -173,6 +175,7 @@ namespace Radarr.Api.V3.Collections
resource.Movies.Add(movieResource); resource.Movies.Add(movieResource);
} }
}
yield return resource; yield return resource;
} }

Loading…
Cancel
Save