Merge pull request #12498 from scampower3/pass-seriesdisplayorder-seasoninfo

Pass Series Display Order information to SeasonInfo
This commit is contained in:
Bond-009
2024-08-23 23:59:13 +02:00
committed by GitHub
2 changed files with 4 additions and 0 deletions

View File

@@ -238,6 +238,7 @@ namespace MediaBrowser.Controller.Entities.TV
if (series is not null)
{
id.SeriesProviderIds = series.ProviderIds;
id.SeriesDisplayOrder = series.DisplayOrder;
}
return id;

View File

@@ -1,4 +1,5 @@
#pragma warning disable CA2227, CS1591
#nullable disable
using System;
using System.Collections.Generic;
@@ -13,5 +14,7 @@ namespace MediaBrowser.Controller.Providers
}
public Dictionary<string, string> SeriesProviderIds { get; set; }
public string SeriesDisplayOrder { get; set; }
}
}