mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-24 22:17:25 -04:00
Merge pull request #10406 from thornbill/fix-playlists
Fix playlist listings
This commit is contained in:
commit
ce8eddd484
1 changed files with 2 additions and 1 deletions
|
@ -244,7 +244,8 @@ namespace Jellyfin.Api.Controllers
|
|||
.AddAdditionalDtoOptions(enableImages, enableUserData, imageTypeLimit, enableImageTypes);
|
||||
|
||||
if (includeItemTypes.Length == 1
|
||||
&& includeItemTypes[0] == BaseItemKind.BoxSet)
|
||||
&& (includeItemTypes[0] == BaseItemKind.Playlist
|
||||
|| includeItemTypes[0] == BaseItemKind.BoxSet))
|
||||
{
|
||||
parentId = null;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue