diff options
| author | Claus Vium <cvium@users.noreply.github.com> | 2021-06-07 09:55:58 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-07 09:55:58 +0200 |
| commit | f17d43c56482015ffa39b6a1d807579d027eed58 (patch) | |
| tree | 6327bd7d808b177c4cd5539dcbcc468bf74b4d1f /MediaBrowser.Controller/Entities/InternalItemsQuery.cs | |
| parent | 9963d0ce5ed29aabc316b5f93784c92c1be5474f (diff) | |
| parent | 48bb3383521f8cfea968981d3241ed6d355b89cc (diff) | |
Merge pull request #6071 from BaronGreenback/DLNAFolderFixPart1
Make DLNA folders to work as expected.
Diffstat (limited to 'MediaBrowser.Controller/Entities/InternalItemsQuery.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/InternalItemsQuery.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Entities/InternalItemsQuery.cs b/MediaBrowser.Controller/Entities/InternalItemsQuery.cs index 75fea365b..ebaf5506d 100644 --- a/MediaBrowser.Controller/Entities/InternalItemsQuery.cs +++ b/MediaBrowser.Controller/Entities/InternalItemsQuery.cs @@ -265,6 +265,11 @@ namespace MediaBrowser.Controller.Entities public bool? IsDeadPerson { get; set; } + /// <summary> + /// Gets or sets a value indicating whether album sub-folders should be returned if they exist. + /// </summary> + public bool? DisplayAlbumFolders { get; set; } + public InternalItemsQuery() { AlbumArtistIds = Array.Empty<Guid>(); |
