mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-24 09:44:47 +03:00
update to jstree 3.0.8
This commit is contained in:
@@ -71,7 +71,8 @@ namespace MediaBrowser.Server.Implementations.Dto
|
||||
{
|
||||
var options = new DtoOptions
|
||||
{
|
||||
Fields = fields
|
||||
Fields = fields,
|
||||
EnableSettings = true
|
||||
};
|
||||
|
||||
// Get everything
|
||||
@@ -676,7 +677,7 @@ namespace MediaBrowser.Server.Implementations.Dto
|
||||
dto.IsUnidentified = item.IsUnidentified;
|
||||
}
|
||||
|
||||
if (fields.Contains(ItemFields.Settings))
|
||||
if (options.EnableSettings)
|
||||
{
|
||||
dto.LockedFields = item.LockedFields;
|
||||
dto.LockData = item.IsLocked;
|
||||
@@ -1169,7 +1170,7 @@ namespace MediaBrowser.Server.Implementations.Dto
|
||||
|
||||
dto.SeasonCount = series.SeasonCount;
|
||||
|
||||
if (fields.Contains(ItemFields.Settings))
|
||||
if (options.EnableSettings)
|
||||
{
|
||||
dto.DisplaySpecialsWithSeasons = series.DisplaySpecialsWithSeasons;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user