diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2019-08-18 14:55:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-18 14:55:03 +0200 |
commit | 96702e7f6727d9c688b2c6e2527c4a5bfefff886 (patch) | |
tree | 3e682e173d7bca9b3f610e01c31352214358a355 /app/models/concerns | |
parent | 8a555534ec0fbee3e1b842ca84f9a1c6e1160c5d (diff) |
Add `tootctl cache recount` command (#11597)
Diffstat (limited to 'app/models/concerns')
-rw-r--r-- | app/models/concerns/account_counters.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/models/concerns/account_counters.rb b/app/models/concerns/account_counters.rb index 3581df8dd..6e25e1905 100644 --- a/app/models/concerns/account_counters.rb +++ b/app/models/concerns/account_counters.rb @@ -26,7 +26,8 @@ module AccountCounters private def save_account_stat - return unless account_stat&.changed? + return unless association(:account_stat).loaded? && account_stat&.changed? + account_stat.save end end |