From 6165f1282d1fb813d71d04677bc5d87dcda27b2b Mon Sep 17 00:00:00 2001 From: Samuel Clay Date: Thu, 23 Jul 2015 15:51:16 -0700 Subject: [PATCH] Fixing broken like comment interactions. --- apps/social/models.py | 1 + 1 file changed, 1 insertion(+) 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)