Allow removal of all people from an item

This commit is contained in:
Shadowghost
2024-05-21 21:14:30 +02:00
parent e67eb48540
commit 8a5a93ee80
2 changed files with 9 additions and 6 deletions

View File

@@ -2812,8 +2812,10 @@ namespace Emby.Server.Implementations.Library
}
_itemRepository.UpdatePeople(item.Id, people);
await SavePeopleMetadataAsync(people, cancellationToken).ConfigureAwait(false);
if (people is not null)
{
await SavePeopleMetadataAsync(people, cancellationToken).ConfigureAwait(false);
}
}
public async Task<ItemImageInfo> ConvertImageToLocal(BaseItem item, ItemImageInfo image, int imageIndex, bool removeOnFailure)