Fix series year lost during parsing

This commit is contained in:
theguymadmax
2026-06-15 11:42:17 -04:00
parent f5c3e2c65a
commit 068bbb7981
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
};
}
}