mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-28 21:11:55 +00:00
Fixed items can be null saving
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user