diff --git a/boards/models/post/manager.py b/boards/models/post/manager.py --- a/boards/models/post/manager.py +++ b/boards/models/post/manager.py @@ -154,7 +154,7 @@ class PostManager(models.Manager): url_to_post = '[post]{}[/post]'.format(str(global_id)) replies = self.filter(text__contains=url_to_post) for reply in replies: - post_import_deps.send(reply.__class__) + post_import_deps.send(reply.__class__, reply) @transaction.atomic def update_post(self, post, title: str, text: str, pub_time: str,