diff options
| author | Cody Robibero <cody@robibe.ro> | 2026-08-10 16:15:54 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-08-10 16:15:54 -0400 |
| commit | 35e86416af32adaa220a241f756544cd316bd866 (patch) | |
| tree | 764c783743013febe43025bba596f2052f3603d8 /Emby.Server.Implementations/Library | |
| parent | c210ea87f26248e256ac1b88b1a00fd854642c5e (diff) | |
| parent | 505a6ebf8f4a36a2deb8e2a7cff3809643e8f654 (diff) | |
Merge pull request #17576 from obiwantoby/perf/batch-mediasourcecount-dto
Bugfix: #17547 | Batching MediaSourceCount into one call
Diffstat (limited to 'Emby.Server.Implementations/Library')
| -rw-r--r-- | Emby.Server.Implementations/Library/LibraryManager.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Emby.Server.Implementations/Library/LibraryManager.cs b/Emby.Server.Implementations/Library/LibraryManager.cs index 19371f68d7..0c7c411d0c 100644 --- a/Emby.Server.Implementations/Library/LibraryManager.cs +++ b/Emby.Server.Implementations/Library/LibraryManager.cs @@ -2235,6 +2235,12 @@ namespace Emby.Server.Implementations.Library } /// <inheritdoc /> + public IReadOnlySet<Guid> GetItemIdsWithAlternateVersions(IReadOnlyList<Guid> itemIds) + { + return _linkedChildrenService.GetItemIdsWithAlternateVersions(itemIds); + } + + /// <inheritdoc /> public void UpsertLinkedChild(Guid parentId, Guid childId, MediaBrowser.Controller.Entities.LinkedChildType childType) { _linkedChildrenService.UpsertLinkedChild(parentId, childId, childType); |
