aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/Dto
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-11-08 10:35:11 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-11-08 10:35:11 -0500
commitc9d9c6ff1f882ec43f8a9d0c956e0a603f9a4916 (patch)
treed2d7bb9a977884e71acba97ddede62e72ac1d6b1 /MediaBrowser.Server.Implementations/Dto
parent1f0fc33a862cc7d06cb0ea8429c8bdbb6bd93568 (diff)
add image saver logging
Diffstat (limited to 'MediaBrowser.Server.Implementations/Dto')
-rw-r--r--MediaBrowser.Server.Implementations/Dto/DtoService.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/Dto/DtoService.cs b/MediaBrowser.Server.Implementations/Dto/DtoService.cs
index 0104196e01..a62821a3a9 100644
--- a/MediaBrowser.Server.Implementations/Dto/DtoService.cs
+++ b/MediaBrowser.Server.Implementations/Dto/DtoService.cs
@@ -165,7 +165,8 @@ namespace MediaBrowser.Server.Implementations.Dto
{
var folder = (Folder)item;
- dto.ChildCount = folder.GetChildren(user, true).Count();
+ dto.ChildCount = folder.GetChildren(user, true)
+ .Count();
if (!(folder is UserRootFolder))
{