update dialogs
This commit is contained in:
parent
d1d0487fee
commit
ab06f59275
|
@ -305,14 +305,7 @@ namespace MediaBrowser.Controller.Entities
|
|||
|
||||
public bool IsFolderGrouped(Guid id)
|
||||
{
|
||||
var config = Configuration;
|
||||
|
||||
if (config.ExcludeFoldersFromGrouping != null)
|
||||
{
|
||||
return !config.ExcludeFoldersFromGrouping.Select(i => new Guid(i)).Contains(id);
|
||||
}
|
||||
|
||||
return config.GroupedFolders.Select(i => new Guid(i)).Contains(id);
|
||||
return Configuration.GroupedFolders.Select(i => new Guid(i)).Contains(id);
|
||||
}
|
||||
|
||||
[IgnoreDataMember]
|
||||
|
|
|
@ -1452,7 +1452,7 @@ namespace MediaBrowser.Server.Implementations.Library
|
|||
.GetChildren(user, true)
|
||||
.OfType<CollectionFolder>()
|
||||
.Where(i => string.IsNullOrWhiteSpace(i.CollectionType) || string.Equals(i.CollectionType, view.ViewType, StringComparison.OrdinalIgnoreCase))
|
||||
.Where(i => user.Configuration.GroupedFolders.Contains(i.Id.ToString("N"), StringComparer.OrdinalIgnoreCase))
|
||||
.Where(i => user.IsFolderGrouped(i.Id))
|
||||
.SelectMany(i => GetTopParentsForQuery(i, user));
|
||||
}
|
||||
return new BaseItem[] { };
|
||||
|
|
Loading…
Reference in New Issue
Block a user