mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-28 21:06:32 +01:00
add custom collection sort orders to edit page
This commit is contained in:
@@ -318,6 +318,12 @@ namespace MediaBrowser.Api
|
||||
hasLang.PreferredMetadataCountryCode = request.PreferredMetadataCountryCode;
|
||||
hasLang.PreferredMetadataLanguage = request.PreferredMetadataLanguage;
|
||||
}
|
||||
|
||||
var hasDisplayOrder = item as IHasDisplayOrder;
|
||||
if (hasDisplayOrder != null)
|
||||
{
|
||||
hasDisplayOrder.DisplayOrder = request.DisplayOrder;
|
||||
}
|
||||
|
||||
var hasAspectRatio = item as IHasAspectRatio;
|
||||
if (hasAspectRatio != null)
|
||||
|
||||
Reference in New Issue
Block a user