about summary refs log tree commit diff
path: root/app/chewy
diff options
context:
space:
mode:
authormayaeh <mayaeh@marimo-net.org>2019-06-27 16:16:55 +0900
committerEugen Rochko <eugen@zeonfederated.com>2019-06-27 09:16:55 +0200
commita02f4b7cd47783bb1938e7e7e81e966657b1c5e6 (patch)
treeadbe6c92f8114c14d01b69b36d544bdb0febcfab /app/chewy
parent3086c645fde2345d34e401bdf3e2f19f19da3294 (diff)
Fix NameError (#11192)
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 f5983a5a5..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)).concat(status.preloadable_poll ? status_preloadable_poll.options : []).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