Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jordanparker6 committed Mar 13, 2024
1 parent a34249e commit 1c06517
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cl/search/signals.py
Original file line number Diff line number Diff line change
Expand Up @@ -589,7 +589,7 @@ def handle_opinion_created_or_updated_webhook(
changed_fields = instance.webhook_tracked_fields.changed()
if changed_fields:
fields_that_changed = list(changed_fields.keys())
send_opinion_updated_webhook([(instance.id, fields_that_changed)])
send_opinion_updated_webhook.delay([(instance.id, fields_that_changed)])


@receiver(
Expand Down Expand Up @@ -626,7 +626,7 @@ def handle_opinion_cluster_created_or_updated_webhook(
changed_fields = instance.webhook_tracked_fields.changed()
if changed_fields:
fields_that_changed = list(changed_fields.keys())
send_opinion_cluster_updated_webhook(
send_opinion_cluster_updated_webhook.delay(
[(instance.id, fields_that_changed)]
)

Expand Down

0 comments on commit 1c06517

Please sign in to comment.