about summary refs log tree commit diff
path: root/app/helpers
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 /app/helpers
parent86750fff3fbb92298978b324592447f3205b63fa (diff)
Hardcoded disabling of `Formatter` cache in normalizer.
Diffstat (limited to 'app/helpers')
-rw-r--r--app/helpers/text_helper.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/helpers/text_helper.rb b/app/helpers/text_helper.rb
index 61a08abe4..a0133be53 100644
--- a/app/helpers/text_helper.rb
+++ b/app/helpers/text_helper.rb
@@ -32,7 +32,7 @@ module TextHelper
     "#{tags.join(' ')}\n#{t.lstrip}".strip.unaccent_via_split_map
   end
 
-  def normalize_status(status, cache: false, skip_cache: true)
-    normalize_text("#{status.tags.pluck(:name).join(' ')}\n#{status.spoiler_text}\n#{status.local? ? Formatter.instance.format(status, skip_cache: skip_cache, cache: cache) : status.text}")
+  def normalize_status(status)
+    normalize_text("#{status.tags.pluck(:name).join(' ')}\n#{status.spoiler_text}\n#{status.local? ? Formatter.instance.format(status, skip_cache: true, cache: false) : status.text}")
   end
 end