Small tweak on search result for people matching on an alias.

This commit is contained in:
Joseph Milazzo 2025-05-08 06:16:10 -05:00
parent a01f656654
commit 940fe80609
3 changed files with 6 additions and 10 deletions

View file

@ -74,6 +74,7 @@ public class MetadataController(IUnitOfWork unitOfWork, ILocalizationService loc
{
return Ok(await unitOfWork.PersonRepository.GetAllPeopleDtosForLibrariesAsync(User.GetUserId(), ids));
}
return Ok(await unitOfWork.PersonRepository.GetAllPeopleDtosForLibrariesAsync(User.GetUserId()));
}