add tvdb and games db to xml savers

This commit is contained in:
Luke Pulverenti
2013-07-16 13:18:32 -04:00
parent c1ad234b79
commit 44493dca1d
7 changed files with 57 additions and 18 deletions

View File

@@ -992,8 +992,13 @@ namespace MediaBrowser.Controller.Entities
return true;
}
var rating = CustomRating ?? OfficialRating;
var rating = CustomRating;
if (string.IsNullOrEmpty(rating))
{
rating = OfficialRating;
}
if (string.IsNullOrEmpty(rating))
{
return !user.Configuration.BlockNotRated;