Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
davidfischer committed Dec 4, 2024
1 parent 107296e commit 0c8e453
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adserver/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,7 @@ def daily_update_domains(day=None):
for values in (
queryset.values("advertisement", "domain")
.annotate(
total_decisions=Count("publisher"),
total_decisions=Count("domain"),
total_offers=Count("domain", filter=Q(advertisement__isnull=False)),
total_views=Count("domain", filter=Q(viewed=True)),
total_clicks=Count("domain", filter=Q(clicked=True)),
Expand Down

0 comments on commit 0c8e453

Please sign in to comment.