Skip to content

Commit

Permalink
fix: movie collections can be known but not downloaded in the server
Browse files Browse the repository at this point in the history
  • Loading branch information
revam committed Dec 7, 2024
1 parent f15c8ab commit 45fd995
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Shokofin/API/ShokoAPIManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1584,7 +1584,7 @@ public async Task<IReadOnlyList<ShowInfo>> GetShowInfosForShokoSeries(string ser
return await CreateShowInfoForTmdbMovie(tmdbMovie).ConfigureAwait(false);

if (await ApiClient.GetTmdbMovieCollection(tmdbMovie.CollectionId.Value.ToString()).ConfigureAwait(false) is not { } tmdbMovieCollection)
return null;
return await CreateShowInfoForTmdbMovie(tmdbMovie).ConfigureAwait(false);

return await CreateShowInfoForTmdbMovieCollection(tmdbMovieCollection).ConfigureAwait(false);
}
Expand Down

0 comments on commit 45fd995

Please sign in to comment.