mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-15 15:48:03 +00:00
Enable nullable for UserItemData
MetadataResult.GetOrAddUserData doesn't ever get used and is probably broken since the migration to .NET Core as it still expects a Guid for userId
This commit is contained in:
@@ -54,11 +54,6 @@ namespace MediaBrowser.XbmcMetadata.Providers
|
||||
result.People = tmpItem.People;
|
||||
result.Images = tmpItem.Images;
|
||||
result.RemoteImages = tmpItem.RemoteImages;
|
||||
|
||||
if (tmpItem.UserDataList is not null)
|
||||
{
|
||||
result.UserDataList = tmpItem.UserDataList;
|
||||
}
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
|
||||
Reference in New Issue
Block a user