Skip to content

Commit

Permalink
Update reply counters only if the reply is public/unlisted (#8211)
Browse files Browse the repository at this point in the history
  • Loading branch information
Gargron committed Aug 16, 2018
1 parent be0b372 commit d784742
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/models/status.rb
Expand Up @@ -456,8 +456,8 @@ def increment_counter_caches
Account.where(id: account_id).update_all('statuses_count = COALESCE(statuses_count, 0) + 1')
end

thread.increment_count!(:replies_count) if in_reply_to_id.present?
reblog.increment_count!(:reblogs_count) if reblog?
thread.increment_count!(:replies_count) if in_reply_to_id.present? && (public_visibility? || unlisted_visibility?)
end

def decrement_counter_caches
Expand All @@ -469,7 +469,7 @@ def decrement_counter_caches
Account.where(id: account_id).update_all('statuses_count = GREATEST(COALESCE(statuses_count, 0) - 1, 0)')
end

thread.decrement_count!(:replies_count) if in_reply_to_id.present?
reblog.decrement_count!(:reblogs_count) if reblog?
thread.decrement_count!(:replies_count) if in_reply_to_id.present? && (public_visibility? || unlisted_visibility?)
end
end

0 comments on commit d784742

Please sign in to comment.