diff options
| author | Tim Eisele <Ghost_of_Stone@web.de> | 2025-04-05 17:57:58 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-05 09:57:58 -0600 |
| commit | 0e7ae0e9a4865fbd2c3c11a91207e106d6d0b368 (patch) | |
| tree | 998193d12c51ce6dfae021c308211b2cec97f3a9 /Jellyfin.Server.Implementations/Item/BaseItemRepository.cs | |
| parent | 2264d58ae75477595253b53d37560dd930586365 (diff) | |
Fix indices and update of ItemValues (#13843)
Diffstat (limited to 'Jellyfin.Server.Implementations/Item/BaseItemRepository.cs')
| -rw-r--r-- | Jellyfin.Server.Implementations/Item/BaseItemRepository.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Server.Implementations/Item/BaseItemRepository.cs b/Jellyfin.Server.Implementations/Item/BaseItemRepository.cs index c7cd54ed1..3e5dd1a5b 100644 --- a/Jellyfin.Server.Implementations/Item/BaseItemRepository.cs +++ b/Jellyfin.Server.Implementations/Item/BaseItemRepository.cs @@ -535,7 +535,7 @@ public sealed class BaseItemRepository if (!localItemValueCache.TryGetValue(itemValue, out var refValue)) { refValue = context.ItemValues - .Where(f => f.CleanValue == GetCleanValue(itemValue.Value) && (int)f.Type == itemValue.MagicNumber) + .Where(f => f.Value == itemValue.Value && (int)f.Type == itemValue.MagicNumber) .Select(e => e.ItemValueId) .FirstOrDefault(); } |
