about summary refs log tree commit diff
path: root/app/lib/feed_manager.rb
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2016-09-29 21:40:37 +0200
committerEugen Rochko <eugen@zeonfederated.com>2016-09-29 21:40:37 +0200
commita4f7eca5fab5827542bdfeb3bc913b01f2b9fcca (patch)
tree4bc85dacdec6f374bdee788f39b15766066b4d89 /app/lib/feed_manager.rb
parent927333f4f89403c5a6a2b421065112e517d88193 (diff)
Fix #25 - Only latest reblog of status kept on feed as zset value is set to "true" status ID
Diffstat (limited to 'app/lib/feed_manager.rb')
-rw-r--r--app/lib/feed_manager.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/lib/feed_manager.rb b/app/lib/feed_manager.rb
index c6ba96771..6e6df0359 100644
--- a/app/lib/feed_manager.rb
+++ b/app/lib/feed_manager.rb
@@ -16,7 +16,7 @@ class FeedManager
   end
 
   def push(timeline_type, account, status)
-    redis.zadd(key(timeline_type, account.id), status.id, status.id)
+    redis.zadd(key(timeline_type, account.id), status.id, status.reblog? ? status.reblog_of_id : status.id)
     trim(timeline_type, account.id)
     broadcast(account.id, type: 'update', timeline: timeline_type, message: inline_render(account, status))
   end