Skip to content
Snippets Groups Projects
Commit c77a54fe authored by Eugen Rochko's avatar Eugen Rochko
Browse files

Fix #651 - Do not reinsert original status into all followers feeds

upon un-reblogging. Check if the reblog was in the feed in the first
place. It might have been filtered on distribution.
parent 974d712f
No related branches found
No related tags found
No related merge requests found
......@@ -59,7 +59,7 @@ class RemoveStatusService < BaseService
end
def unpush(type, receiver, status)
if status.reblog?
if status.reblog? && !redis.zscore(FeedManager.instance.key(type, receiver.id), status.reblog_of_id).nil?
redis.zadd(FeedManager.instance.key(type, receiver.id), status.reblog_of_id, status.reblog_of_id)
else
redis.zremrangebyscore(FeedManager.instance.key(type, receiver.id), status.id, status.id)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment