0
0
Fork 0

Fix #25 - Only latest reblog of status kept on feed as zset value is set to "true" status ID

This commit is contained in:
Eugen Rochko 2016-09-29 21:40:37 +02:00
parent 927333f4f8
commit a4f7eca5fa
2 changed files with 3 additions and 3 deletions

View file

@ -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