adressing pr comments

This commit is contained in:
Felix Ruhnow 2019-02-19 12:06:50 +01:00
parent 967d5deeb7
commit 1d631540ac
1 changed files with 2 additions and 2 deletions

View File

@ -228,12 +228,12 @@ namespace MediaBrowser.Api.UserLibrary
request.IncludeItemTypes = "Playlist";
}
if (!user.Policy.EnabledFolders.Where(i => new Guid(i).Equals(item.Id)).Any() && !user.Policy.EnableAllFolders)
if (!user.Policy.EnableAllFolders && !user.Policy.EnabledFolders.Any(i => new Guid(i).Equals(item.Id)))
{
Logger.LogWarning($"{user.Name} is not permitted to access Library {item.Name}.");
return new QueryResult<BaseItem>
{
Items = new BaseItem[0],
Items = Array.Empty<BaseItem>(),
TotalRecordCount = 0
};
}