Explorar el Código

fixes #411 - Parental Control issue

Luke Pulverenti hace 12 años
padre
commit
0fb515d209
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 true;
+                return !user.Configuration.BlockNotRated;
             }
 
             return value.Value <= user.Configuration.MaxParentalRating.Value;