about summary refs log tree commit diff
path: root/app/chewy/statuses_index.rb
diff options
context:
space:
mode:
authorReverite <github@reverite.sh>2019-06-27 21:10:01 -0700
committerReverite <github@reverite.sh>2019-06-27 21:10:01 -0700
commit9861df046853b71370cede86afbba1a371714756 (patch)
tree38416f38dfc2a2349b7a5df20646bb7d0f51361f /app/chewy/statuses_index.rb
parent2d396aa3a0bf2674194b9f4c0e0a1052b8d23a06 (diff)
parentca17bae904783dfb1f4899a533d28a79da0c6fe9 (diff)
Merge branch 'glitch' into production
Diffstat (limited to 'app/chewy/statuses_index.rb')
-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 8ce413f8a..b7365d5ca 100644
--- a/app/chewy/statuses_index.rb
+++ b/app/chewy/statuses_index.rb
@@ -51,7 +51,7 @@ class StatusesIndex < Chewy::Index
       field :id, type: 'long'
       field :account_id, type: 'long'
 
-      field :text, type: 'text', value: ->(status) { [status.spoiler_text, Formatter.instance.plaintext(status)].concat(status.media_attachments.map(&:description)).join("\n\n") } do
+      field :text, type: 'text', value: ->(status) { [status.spoiler_text, Formatter.instance.plaintext(status)].concat(status.media_attachments.map(&:description)).concat(status.preloadable_poll ? status.preloadable_poll.options : []).join("\n\n") } do
         field :stemmed, type: 'text', analyzer: 'content'
       end