Skip to content

Commit

Permalink
fix: await production locations instead of genres
Browse files Browse the repository at this point in the history
  • Loading branch information
revam committed Nov 10, 2024
1 parent dd9d1ce commit 04454d1
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 @@ -777,7 +777,7 @@ private async Task<SeasonInfo> CreateSeasonInfo(Series series)
.OrderBy(t => t)
.Distinct()
.ToArray();
var productionLocations = (await Task.WhenAll(genresTasks))
var productionLocations = (await Task.WhenAll(productionLocationsTasks))
.SelectMany(g => g)
.OrderBy(g => g)
.Distinct()
Expand Down

0 comments on commit 04454d1

Please sign in to comment.