Browse Source

fixes #411 - Parental Control issue

Luke Pulverenti 12 years ago
parent
commit
0fb515d209
1 changed files with 1 additions and 1 deletions
  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;