diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2018-08-16 14:21:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-16 14:21:52 +0200 |
commit | d78474264da0bd51e021c5f04311515e10ac828e (patch) | |
tree | e558a4595855a530a3e718a8d728fda3eb341fc2 /app/models | |
parent | be0b372a22347fcad9d4e4e4199e9f59caa5f901 (diff) |
Update reply counters only if the reply is public/unlisted (#8211)
Diffstat (limited to 'app/models')
-rw-r--r-- | app/models/status.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/models/status.rb b/app/models/status.rb index 1c87f2566..2eed33659 100644 --- a/app/models/status.rb +++ b/app/models/status.rb @@ -456,8 +456,8 @@ class Status < ApplicationRecord 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 @@ -469,7 +469,7 @@ class Status < ApplicationRecord 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 |