mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-22 18:23:45 +00:00
don't save production year in person xml
This commit is contained in:
@@ -245,7 +245,7 @@ namespace MediaBrowser.Providers.Savers
|
||||
builder.Append("<Rating>" + SecurityElement.Escape(item.CommunityRating.Value.ToString(UsCulture)) + "</Rating>");
|
||||
}
|
||||
|
||||
if (item.ProductionYear.HasValue)
|
||||
if (item.ProductionYear.HasValue && !(item is Person))
|
||||
{
|
||||
builder.Append("<ProductionYear>" + SecurityElement.Escape(item.ProductionYear.Value.ToString(UsCulture)) + "</ProductionYear>");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user