Skip to content

Commit 04454d1

Browse files
committed
fix: await production locations instead of genres
1 parent dd9d1ce commit 04454d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Shokofin/API/ShokoAPIManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -777,7 +777,7 @@ private async Task<SeasonInfo> CreateSeasonInfo(Series series)
777777
.OrderBy(t => t)
778778
.Distinct()
779779
.ToArray();
780-
var productionLocations = (await Task.WhenAll(genresTasks))
780+
var productionLocations = (await Task.WhenAll(productionLocationsTasks))
781781
.SelectMany(g => g)
782782
.OrderBy(g => g)
783783
.Distinct()

0 commit comments

Comments
 (0)