From 182e3d81eee848ea4c0fa4ff64ff468c61d841bc Mon Sep 17 00:00:00 2001 From: Samuel Clay Date: Thu, 16 Aug 2012 09:43:43 -0700 Subject: [PATCH] Moving read date to use shared date. --- apps/social/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/social/models.py b/apps/social/models.py index c69446d5b..4b1d09060 100644 --- a/apps/social/models.py +++ b/apps/social/models.py @@ -796,7 +796,7 @@ class MSocialSubscription(mongo.Document): feed_id = story.story_feed_id m = MUserStory(user_id=self.user_id, feed_id=feed_id, read_date=date, - story_id=story.story_guid, story_date=story.story_date) + story_id=story.story_guid, story_date=story.shared_date) try: m.save() except OperationError: