Fix season names

This commit is contained in:
Shadowghost
2024-05-15 01:23:23 +02:00
parent f396a95f05
commit 48228430c0
4 changed files with 31 additions and 15 deletions

View File

@@ -83,7 +83,7 @@ namespace Emby.Server.Implementations.Library.Resolvers.TV
var seasonNumber = season.IndexNumber.Value;
if (string.IsNullOrEmpty(season.Name))
{
var seasonNames = series.SeasonNames;
var seasonNames = series.GetSeasonNames();
if (seasonNames.TryGetValue(seasonNumber, out var seasonName))
{
season.Name = seasonName;