Parcourir la source

revert parental control change

Luke Pulverenti il y a 10 ans
Parent
commit
2667788b00
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      MediaBrowser.Controller/Entities/BaseItem.cs

+ 1 - 1
MediaBrowser.Controller/Entities/BaseItem.cs

@@ -1109,7 +1109,7 @@ namespace MediaBrowser.Controller.Entities
             // Could not determine the integer value
             if (!value.HasValue)
             {
-                return !GetBlockUnratedValue(user.Policy);
+                return true;
             }
 
             return value.Value <= maxAllowedRating.Value;