diff options
| author | JPVenson <github@jpb.email> | 2025-04-09 03:19:01 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-08 19:19:01 -0600 |
| commit | 070abcd8ff42cfbf423e27a75bbefeaca421460c (patch) | |
| tree | ce98aa15a4fb4c5e7d1b79fc9cf2e9d701435af0 | |
| parent | 16dc1e226091f28565b1ec9f9c5b21ad71b55bf6 (diff) | |
Fix InheritedParentalRatingSubValue not set (#13880)
| -rw-r--r-- | Jellyfin.Server.Implementations/Item/BaseItemRepository.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Jellyfin.Server.Implementations/Item/BaseItemRepository.cs b/Jellyfin.Server.Implementations/Item/BaseItemRepository.cs index f3e7bb3c5..75334f427 100644 --- a/Jellyfin.Server.Implementations/Item/BaseItemRepository.cs +++ b/Jellyfin.Server.Implementations/Item/BaseItemRepository.cs @@ -620,6 +620,7 @@ public sealed class BaseItemRepository dto.PreferredMetadataCountryCode = entity.PreferredMetadataCountryCode; dto.IsInMixedFolder = entity.IsInMixedFolder; dto.InheritedParentalRatingValue = entity.InheritedParentalRatingValue; + dto.InheritedParentalRatingSubValue = entity.InheritedParentalRatingSubValue; dto.CriticRating = entity.CriticRating; dto.PresentationUniqueKey = entity.PresentationUniqueKey; dto.OriginalTitle = entity.OriginalTitle; |
