Sort special features same as other spots, removing unnecssary function

Added to contributors
This commit is contained in:
Zach Phelan 2022-09-13 16:40:47 -06:00
parent 0246ba1fb4
commit c71d6f2358
3 changed files with 3 additions and 14 deletions

View file

@ -233,7 +233,8 @@ namespace Jellyfin.Api.Controllers
var dtoOptions = new DtoOptions().AddClientFields(Request);
return Ok(item
.GetExtras(BaseItem.DisplayExtraTypes)
.GetExtras()
.Where(i => i.ExtraType.HasValue && BaseItem.DisplayExtraTypes.Contains(i.ExtraType.Value))
.Select(i => _dtoService.GetBaseItemDto(i, dtoOptions, user, item)));
}