From 45fd995042753ff6fd5c73ef39c37adb66d872a4 Mon Sep 17 00:00:00 2001 From: Mikal Stordal Date: Sat, 7 Dec 2024 03:04:23 +0100 Subject: [PATCH] fix: movie collections can be known but not downloaded in the server --- Shokofin/API/ShokoAPIManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Shokofin/API/ShokoAPIManager.cs b/Shokofin/API/ShokoAPIManager.cs index 62f4a1a..c08a15a 100644 --- a/Shokofin/API/ShokoAPIManager.cs +++ b/Shokofin/API/ShokoAPIManager.cs @@ -1584,7 +1584,7 @@ public async Task> 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); }