mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-06-22 06:50:58 -04:00
Pass Series Display Order information to SeasonInfo
This commit is contained in:
parent
207261a2cf
commit
bfec336549
@ -238,6 +238,7 @@ namespace MediaBrowser.Controller.Entities.TV
|
|||||||
if (series is not null)
|
if (series is not null)
|
||||||
{
|
{
|
||||||
id.SeriesProviderIds = series.ProviderIds;
|
id.SeriesProviderIds = series.ProviderIds;
|
||||||
|
id.SeriesDisplayOrder = series.DisplayOrder;
|
||||||
}
|
}
|
||||||
|
|
||||||
return id;
|
return id;
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
#pragma warning disable CA2227, CS1591
|
#pragma warning disable CA2227, CS1591
|
||||||
|
#nullable disable
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
@ -13,5 +14,7 @@ namespace MediaBrowser.Controller.Providers
|
|||||||
}
|
}
|
||||||
|
|
||||||
public Dictionary<string, string> SeriesProviderIds { get; set; }
|
public Dictionary<string, string> SeriesProviderIds { get; set; }
|
||||||
|
|
||||||
|
public string SeriesDisplayOrder { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user