Fix #25 - Only latest reblog of status kept on feed as zset value is set to "true" status ID
This commit is contained in:
parent
927333f4f8
commit
a4f7eca5fa
2 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue