aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-08-01 08:00:47 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-08-01 08:00:47 -0400
commitf9e1f3f4e8857a4e2a9561664cbd36f769c01a6d (patch)
tree3f67000cab51d4ed6cbee18bfcf306bd655d3511
parenta6c1370a62ab0fdd9caf6bc83bacfb6c5c5137ee (diff)
reverting parental control change
-rw-r--r--MediaBrowser.Controller/Entities/BaseItem.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Entities/BaseItem.cs b/MediaBrowser.Controller/Entities/BaseItem.cs
index 28683e1dd..35639925d 100644
--- a/MediaBrowser.Controller/Entities/BaseItem.cs
+++ b/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;