only filter games that don't have BR cotnent ratings (bug 786833)

This commit is contained in:
Matt Claypotch 2012-08-30 14:04:01 -07:00
Родитель 79fade7c93
Коммит d54a23a87c
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -314,7 +314,7 @@ class Webapp(Addon):
region = getattr(request, 'REGION', mkt.regions.WORLDWIDE)
# See if it's a game without a content rating.
if (region == mkt.regions.BR and
if (region == mkt.regions.BR and self.listed_in(category='games') and
not self.content_ratings_in(mkt.regions.BR, 'games')):
unrated_brazil_game = True
else: