diff options
| author | Bond-009 <bond.009@outlook.com> | 2026-05-27 20:59:18 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-05-27 20:59:18 +0200 |
| commit | 2f17516d4bd8700e4a66f609b9c5fac835020407 (patch) | |
| tree | b26176e8adf7f6d56cd5a002fdc37b63800cf71a /Emby.Server.Implementations/Library/LibraryManager.cs | |
| parent | cbd0c5b8417e42f072007194d204ff711b11ff1a (diff) | |
| parent | 5ed3ffdb42cde2ddb45d0ca55d84d885d877d2a9 (diff) | |
Fix movie recommendations
Diffstat (limited to 'Emby.Server.Implementations/Library/LibraryManager.cs')
| -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 30ff1bd333..cc85f09d23 100644 --- a/Emby.Server.Implementations/Library/LibraryManager.cs +++ b/Emby.Server.Implementations/Library/LibraryManager.cs @@ -3394,6 +3394,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(); |
