diff options
| author | Claus Vium <cvium@users.noreply.github.com> | 2022-10-07 07:49:46 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-07 07:49:46 +0200 |
| commit | 803972a76f6f8eb590b2de06662f7e83ce40273d (patch) | |
| tree | dd72f47907390a7a88373d4cc7510d602ed2d556 /Jellyfin.Api/Controllers/PlaylistsController.cs | |
| parent | 927fe33d3a0ec7f9e0fb568cfd423c6e8b966c9d (diff) | |
| parent | 6afc9110439c3c5345beb9a6bac1968ee4dedce8 (diff) | |
Merge pull request #8500 from cvium/fix_authcontext_usage
Diffstat (limited to 'Jellyfin.Api/Controllers/PlaylistsController.cs')
| -rw-r--r-- | Jellyfin.Api/Controllers/PlaylistsController.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Api/Controllers/PlaylistsController.cs b/Jellyfin.Api/Controllers/PlaylistsController.cs index ad85f2fb2..fb045f891 100644 --- a/Jellyfin.Api/Controllers/PlaylistsController.cs +++ b/Jellyfin.Api/Controllers/PlaylistsController.cs @@ -200,7 +200,7 @@ namespace Jellyfin.Api.Controllers } var dtoOptions = new DtoOptions { Fields = fields } - .AddClientFields(Request) + .AddClientFields(User) .AddAdditionalDtoOptions(enableImages, enableUserData, imageTypeLimit, enableImageTypes); var dtos = _dtoService.GetBaseItemDtos(items.Select(i => i.Item2).ToList(), dtoOptions, user); |
