diff --git a/apps/social/models.py b/apps/social/models.py index 82503be19..a8325993e 100644 --- a/apps/social/models.py +++ b/apps/social/models.py @@ -2952,6 +2952,7 @@ class MInteraction(mongo.Document): try: cls.objects.get(**params) except cls.DoesNotExist: + params.update(dict(title=story_title, content=comments)) cls.objects.create(**params) cls.publish_update_to_subscribers(comment_user_id)