Merge pull request #17112 from theguymadmax/add-year-to-series-resolver

Fix series year lost during name parsing
This commit is contained in:
Bond-009
2026-06-18 17:46:23 +02:00
committed by GitHub
3 changed files with 11 additions and 3 deletions

View File

@@ -69,7 +69,8 @@ namespace Emby.Server.Implementations.Library.Resolvers.TV
return new Series
{
Path = args.Path,
Name = seriesInfo.Name
Name = seriesInfo.Name,
ProductionYear = seriesInfo.Year
};
}
}