Skip to content

Commit

Permalink
one last fix
Browse files Browse the repository at this point in the history
  • Loading branch information
owocki committed Dec 6, 2019
1 parent 4c66090 commit 0abc6ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/marketing/management/commands/assemble_leaderboards.py
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ def do_leaderboard_feed():
max_rank = 25
for _type in [PAYERS, EARNERS, ORGS]:
key = f'{WEEKLY}_{_type}'
lrs = LeaderboardRank.objects.active().filter(leaderboard=key, rank__lte=max_rank)
lrs = LeaderboardRank.objects.active().filter(leaderboard=key, rank__lte=max_rank, product='all')
print(key, lrs.count())
for lr in lrs:
metadata = {
Expand Down

0 comments on commit 0abc6ec

Please sign in to comment.