about summary refs log tree commit diff
path: root/app/chewy
diff options
context:
space:
mode:
authorClaire <claire.github-309c@sitedethib.com>2022-03-31 10:36:23 +0200
committerClaire <claire.github-309c@sitedethib.com>2022-03-31 10:36:23 +0200
commit6bdec0aec967c5c64e46136f73666c4a67d5a641 (patch)
treef64333019509573bec9799648217d8aa22fca166 /app/chewy
parent363773d0e9ffa9f4efc564603327f225193a2bf1 (diff)
parentef196c913c77338be5ebb1e02af2f6225f857080 (diff)
Merge branch 'main' into glitch-soc/merge-upstream
Diffstat (limited to 'app/chewy')
-rw-r--r--app/chewy/statuses_index.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/chewy/statuses_index.rb b/app/chewy/statuses_index.rb
index bfd61a048..1381a96ed 100644
--- a/app/chewy/statuses_index.rb
+++ b/app/chewy/statuses_index.rb
@@ -59,7 +59,7 @@ class StatusesIndex < Chewy::Index
     field :id, type: 'long'
     field :account_id, type: 'long'
 
-    field :text, type: 'text', value: ->(status) { [status.spoiler_text, extract_status_plain_text(status)].concat(status.ordered_media_attachments.map(&:description)).concat(status.preloadable_poll ? status.preloadable_poll.options : []).join("\n\n") } do
+    field :text, type: 'text', value: ->(status) { status.searchable_text } do
       field :stemmed, type: 'text', analyzer: 'content'
     end