reverting parental control change

This commit is contained in:
Luke Pulverenti 2013-08-01 08:00:47 -04:00
parent a6c1370a62
commit f9e1f3f4e8

View file

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