aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Library
diff options
context:
space:
mode:
authorCody Robibero <cody@robibe.ro>2026-08-30 13:29:13 -0400
committerGitHub <noreply@github.com>2026-08-30 13:29:13 -0400
commit4962e4ec33dcc0f208eef7ccf72a78d26c5f2ae8 (patch)
tree1b2bd54ea27d06ea17ab3d176b48e357d01d4f0a /Emby.Server.Implementations/Library
parent24288e79a9a576ead991afe1b96295ac8a36fad5 (diff)
parent27d898e59e5c225baa3db0ee114f1c4034b74e31 (diff)
Merge pull request #17735 from Shadowghost/fix-season-child-count
Count a season's episodes by the season they belong to
Diffstat (limited to 'Emby.Server.Implementations/Library')
-rw-r--r--Emby.Server.Implementations/Library/LibraryManager.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Emby.Server.Implementations/Library/LibraryManager.cs b/Emby.Server.Implementations/Library/LibraryManager.cs
index dd8c883684..71e2129ff8 100644
--- a/Emby.Server.Implementations/Library/LibraryManager.cs
+++ b/Emby.Server.Implementations/Library/LibraryManager.cs
@@ -1745,9 +1745,9 @@ namespace Emby.Server.Implementations.Library
return _countService.GetItemCountsForNameItem(kind, id, relatedItemKinds, query);
}
- public Dictionary<Guid, int> GetChildCountBatch(IReadOnlyList<Guid> parentIds, Guid? userId)
+ public Dictionary<Guid, int> GetChildCountBatch(IReadOnlyList<Guid> parentIds, User? user)
{
- return _countService.GetChildCountBatch(parentIds, userId);
+ return _countService.GetChildCountBatch(parentIds, user);
}
/// <inheritdoc/>