diff options
| author | Niels van Velzen <nielsvanvelzen@users.noreply.github.com> | 2025-11-30 15:22:54 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-30 07:22:54 -0700 |
| commit | 6c507b77aeccbf83f39a9948bac98d3fed45b130 (patch) | |
| tree | bc9676f6e70a3d6927d7595776fd8c5cb868ebfc /Jellyfin.Api/Controllers/SuggestionsController.cs | |
| parent | 6ed0ccd37c60e8dcab312b3c2c0cfb87f8bb0e13 (diff) | |
Remove DtoExtensions.AddClientFields (#15638)
Diffstat (limited to 'Jellyfin.Api/Controllers/SuggestionsController.cs')
| -rw-r--r-- | Jellyfin.Api/Controllers/SuggestionsController.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Api/Controllers/SuggestionsController.cs b/Jellyfin.Api/Controllers/SuggestionsController.cs index 52982c362..e9e404076 100644 --- a/Jellyfin.Api/Controllers/SuggestionsController.cs +++ b/Jellyfin.Api/Controllers/SuggestionsController.cs @@ -77,7 +77,7 @@ public class SuggestionsController : BaseJellyfinApiController user = _userManager.GetUserById(requestUserId); } - var dtoOptions = new DtoOptions().AddClientFields(User); + var dtoOptions = new DtoOptions(); var result = _libraryManager.GetItemsResult(new InternalItemsQuery(user) { OrderBy = new[] { (ItemSortBy.Random, SortOrder.Descending) }, |
