mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-23 17:24:46 +03:00
sync updates
This commit is contained in:
@@ -52,7 +52,13 @@ namespace MediaBrowser.Controller.Entities
|
||||
|
||||
public IEnumerable<BaseItem> GetTaggedItems(IEnumerable<BaseItem> inputItems)
|
||||
{
|
||||
return inputItems.Where(i => i.Studios.Contains(Name, StringComparer.OrdinalIgnoreCase));
|
||||
return inputItems.Where(ItemFilter);
|
||||
}
|
||||
|
||||
|
||||
public Func<BaseItem, bool> ItemFilter
|
||||
{
|
||||
get { return i => i.Studios.Contains(Name, StringComparer.OrdinalIgnoreCase); }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user