Fixes typo in function call

This commit is contained in:
Mouse Reeve 2021-09-06 15:48:02 -07:00
parent 4db2557581
commit e35c805960

View file

@ -270,7 +270,7 @@ def add_status_on_create(sender, instance, created, *args, **kwargs):
def add_status_on_create_command(sender, instance, created):
"""runs this code only after the database commit completes"""
add_status_task.delay(instance.id, increment_unread_unread=created)
add_status_task.delay(instance.id, increment_unread=created)
if sender == models.Boost:
handle_boost_task.delay(instance.id)