Fixed items can be null saving

pull/12798/head
JPVenson 3 months ago
parent 5167333602
commit f81d124019

@ -2800,9 +2800,9 @@ namespace Emby.Server.Implementations.Library
return;
}
_peopleRepository.UpdatePeople(item.Id, people);
if (people is not null)
{
_peopleRepository.UpdatePeople(item.Id, people);
await SavePeopleMetadataAsync(people, cancellationToken).ConfigureAwait(false);
}
}

Loading…
Cancel
Save