commit
b985873529
|
@ -170,7 +170,9 @@ namespace MediaBrowser.Controller.Entities.TV
|
|||
}
|
||||
else
|
||||
{
|
||||
items = GetEpisodes(query.User).Where(filter);
|
||||
items = query.Recursive
|
||||
? GetRecursiveChildren(user, filter)
|
||||
: GetChildren(user, true).Where(filter);
|
||||
}
|
||||
|
||||
var result = PostFilterAndSort(items, query);
|
||||
|
@ -267,6 +269,11 @@ namespace MediaBrowser.Controller.Entities.TV
|
|||
return GetEpisodes(user);
|
||||
}
|
||||
|
||||
public override IEnumerable<BaseItem> GetRecursiveChildren(User user, Func<BaseItem, bool> filter)
|
||||
{
|
||||
return GetEpisodes(user).Where(filter);
|
||||
}
|
||||
|
||||
protected override bool GetBlockUnratedValue(UserPolicy config)
|
||||
{
|
||||
// Don't block. Let either the entire series rating or episode rating determine it
|
||||
|
|
|
@ -164,7 +164,9 @@
|
|||
<Content Include="dashboard-ui\css\images\logo.png">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</Content>
|
||||
<Content Include="dashboard-ui\css\polymer\paper-icon-button-light.css" />
|
||||
<Content Include="dashboard-ui\css\polymer\paper-icon-button-light.css">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</Content>
|
||||
<Content Include="dashboard-ui\devices\windowsphone\wp.css">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</Content>
|
||||
|
|
Loading…
Reference in New Issue
Block a user