Use Guid for BaseItemPerson.Id

This commit is contained in:
Niels van Velzen
2022-01-22 15:46:12 +01:00
parent cd675475bc
commit e86f778c05
2 changed files with 3 additions and 2 deletions

View File

@@ -584,7 +584,7 @@ namespace Emby.Server.Implementations.Dto
if (dictionary.TryGetValue(person.Name, out Person entity))
{
baseItemPerson.PrimaryImageTag = GetTagAndFillBlurhash(dto, entity, ImageType.Primary);
baseItemPerson.Id = entity.Id.ToString("N", CultureInfo.InvariantCulture);
baseItemPerson.Id = entity.Id;
if (dto.ImageBlurHashes != null)
{
// Only add BlurHash for the person's image.