Browse Source

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.
closed-social-glitch-2
Eugen Rochko 7 years ago
parent
commit
c77a54fe0a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/services/remove_status_service.rb

+ 1
- 1
app/services/remove_status_service.rb View File

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

Loading…
Cancel
Save