~cytrogen/masto-fe

a02f4b7cd47783bb1938e7e7e81e966657b1c5e6 — mayaeh 6 years ago 3086c64
Fix NameError (#11192)

1 files changed, 1 insertions(+), 1 deletions(-)

M app/chewy/statuses_index.rb
M app/chewy/statuses_index.rb => app/chewy/statuses_index.rb +1 -1
@@ 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