Explorar el Código

reverting parental control change

Luke Pulverenti hace 12 años
padre
commit
f9e1f3f4e8
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      MediaBrowser.Controller/Entities/BaseItem.cs

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

@@ -1009,7 +1009,7 @@ namespace MediaBrowser.Controller.Entities
             // Could not determine the integer value
             if (!value.HasValue)
             {
-                return !user.Configuration.BlockNotRated;
+                return true;
             }
 
             return value.Value <= user.Configuration.MaxParentalRating.Value;