fixes #411 - Parental Control issue

pull/702/head
Luke Pulverenti 11 years ago
parent f7bce0bc3c
commit 0fb515d209

@ -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;

Loading…
Cancel
Save