aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/HttpHandlers/StudioHandler.cs
diff options
context:
space:
mode:
authorebr11 Eric Reed spam <ebr11 Eric Reed spam@reedsplace.com>2012-09-17 11:12:43 -0400
committerebr11 Eric Reed spam <ebr11 Eric Reed spam@reedsplace.com>2012-09-17 11:12:43 -0400
commit17106ea5c72511f5871178c7f1def629c20191ac (patch)
tree5f05396a85d21613812bf152ba296e557d9ba83e /MediaBrowser.Api/HttpHandlers/StudioHandler.cs
parent6c9ecb6d2e7bdc61d608521d238b3a94c14b279a (diff)
Initial commit changing to on-demand child loading and validations
Diffstat (limited to 'MediaBrowser.Api/HttpHandlers/StudioHandler.cs')
-rw-r--r--MediaBrowser.Api/HttpHandlers/StudioHandler.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Api/HttpHandlers/StudioHandler.cs b/MediaBrowser.Api/HttpHandlers/StudioHandler.cs
index cf0b7d38d..79f057810 100644
--- a/MediaBrowser.Api/HttpHandlers/StudioHandler.cs
+++ b/MediaBrowser.Api/HttpHandlers/StudioHandler.cs
@@ -40,7 +40,7 @@ namespace MediaBrowser.Api.HttpHandlers
int count = 0;
// Get all the allowed recursive children
- IEnumerable<BaseItem> allItems = parent.GetParentalAllowedRecursiveChildren(user);
+ IEnumerable<BaseItem> allItems = parent.GetRecursiveChildren(user);
foreach (var item in allItems)
{