about summary refs log tree commit diff
path: root/lib
diff options
context:
space:
mode:
authormultiple creatures <dev@multiple-creature.party>2019-11-17 14:22:33 -0600
committermultiple creatures <dev@multiple-creature.party>2019-11-17 14:22:33 -0600
commit81942defe915389a130f17268b4e644bf8e2c7d5 (patch)
tree11b5dcac5df155f6f79a0e96d042d1c30e53cd7c /lib
parent86750fff3fbb92298978b324592447f3205b63fa (diff)
Hardcoded disabling of `Formatter` cache in normalizer.
Diffstat (limited to 'lib')
-rw-r--r--lib/tasks/monsterfork.rake2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tasks/monsterfork.rake b/lib/tasks/monsterfork.rake
index 00a0eaedb..659573358 100644
--- a/lib/tasks/monsterfork.rake
+++ b/lib/tasks/monsterfork.rake
@@ -13,7 +13,7 @@ namespace :monsterfork do
         statuses.each do |s|
           begin
             next if s.destroyed?
-            s.update_column(:normalized_text, normalize_status(s, cache: false))
+            s.update_column(:normalized_text, normalize_status(s))
           rescue rescue ActiveRecord::RecordNotFound
             true
           end