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

Pass Series Display Order information to SeasonInfo
pull/12507/head
Bond-009 5 months ago committed by GitHub
commit 80bdfd1d98
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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

@ -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; }
}
}

Loading…
Cancel
Save