diff options
Diffstat (limited to 'MediaBrowser.Controller/Entities/Folder.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/Folder.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Controller/Entities/Folder.cs b/MediaBrowser.Controller/Entities/Folder.cs index 4506bafced..fbb18afa9e 100644 --- a/MediaBrowser.Controller/Entities/Folder.cs +++ b/MediaBrowser.Controller/Entities/Folder.cs @@ -1883,11 +1883,11 @@ namespace MediaBrowser.Controller.Entities if (LinkedChildren.Length > 0) { - (playedCount, totalCount) = ItemRepository.GetPlayedAndTotalCountFromLinkedChildren(query, Id); + (playedCount, totalCount) = ItemCountService.GetPlayedAndTotalCountFromLinkedChildren(query, Id); } else { - (playedCount, totalCount) = ItemRepository.GetPlayedAndTotalCount(query, Id); + (playedCount, totalCount) = ItemCountService.GetPlayedAndTotalCount(query, Id); } } |
