aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Library/LibraryManager.cs
diff options
context:
space:
mode:
authorShadowghost <Ghost_of_Stone@web.de>2026-05-15 14:37:01 +0200
committerShadowghost <Ghost_of_Stone@web.de>2026-05-15 14:37:01 +0200
commit97c20e6ac5bf89aa0a29f950b9308036e589de12 (patch)
tree5ae14da7e58d49bd088310b54c4275fbeff25b44 /Emby.Server.Implementations/Library/LibraryManager.cs
parentd93e2d6667872ea16c523202f200c873fc8191ad (diff)
Fix movie recommendations
Diffstat (limited to 'Emby.Server.Implementations/Library/LibraryManager.cs')
-rw-r--r--Emby.Server.Implementations/Library/LibraryManager.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/Emby.Server.Implementations/Library/LibraryManager.cs b/Emby.Server.Implementations/Library/LibraryManager.cs
index f2480679d9..c20a4442eb 100644
--- a/Emby.Server.Implementations/Library/LibraryManager.cs
+++ b/Emby.Server.Implementations/Library/LibraryManager.cs
@@ -3389,6 +3389,12 @@ namespace Emby.Server.Implementations.Library
return _peopleRepository.GetPeopleNames(query);
}
+ /// <inheritdoc/>
+ public IReadOnlyList<string> GetPeopleNamesByItems(IReadOnlyList<Guid> itemIds, IReadOnlyList<string> personTypes, int limit)
+ {
+ return _peopleRepository.GetPeopleNamesByItems(itemIds, personTypes, limit);
+ }
+
public void UpdatePeople(BaseItem item, List<PersonInfo> people)
{
UpdatePeopleAsync(item, people, CancellationToken.None).GetAwaiter().GetResult();