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

@@ -2606,19 +2606,6 @@ namespace MediaBrowser.Controller.Entities
.OrderBy(i => i.SortName);
}
/// <summary>
/// Get all extras with specific types that are associated with this item.
/// </summary>
/// <param name="extraTypes">The types of extras to retrieve.</param>
/// <returns>An enumerable containing the extras.</returns>
public IEnumerable<BaseItem> GetExtras(IReadOnlyCollection<ExtraType> extraTypes)
{
return ExtraIds
.Select(LibraryManager.GetItemById)
.Where(i => i != null)
.Where(i => i.ExtraType.HasValue && extraTypes.Contains(i.ExtraType.Value));
}
public virtual long GetRunTimeTicksForPlayState()
{
return RunTimeTicks ?? 0;