Browse Source

Fix InheritedParentalRatingSubValue not set (#13880)

JPVenson 1 month ago
parent
commit
070abcd8ff
1 changed files with 1 additions and 0 deletions
  1. 1 0
      Jellyfin.Server.Implementations/Item/BaseItemRepository.cs

+ 1 - 0
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;