aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-05-02 13:35:48 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-05-02 13:35:48 -0400
commit5f609dca818190775517302898260c04314269f6 (patch)
treef999d5d0040fc212eccdd2840a19ad59da0dc773 /MediaBrowser.Server.Implementations
parent568e339ae890414f45d8ecb332f5a6bf68ec7baa (diff)
fix folder user data
Diffstat (limited to 'MediaBrowser.Server.Implementations')
-rw-r--r--MediaBrowser.Server.Implementations/Dto/DtoService.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/Dto/DtoService.cs b/MediaBrowser.Server.Implementations/Dto/DtoService.cs
index af4c8675c9..ff94552dad 100644
--- a/MediaBrowser.Server.Implementations/Dto/DtoService.cs
+++ b/MediaBrowser.Server.Implementations/Dto/DtoService.cs
@@ -499,7 +499,7 @@ namespace MediaBrowser.Server.Implementations.Dto
{
dto.ChildCount = GetChildCount(folder, user);
- if (!folder.SupportsUserDataFromChildren)
+ if (folder.SupportsUserDataFromChildren)
{
SetSpecialCounts(folder, user, dto, fields, syncProgress);
}