~cytrogen/masto-fe

6ab7051b48dcb1d45c377a129350db1fdeaf11b8 — Thibaut Girka 6 years ago 4175f13 + a02f4b7
Merge branch 'master' into glitch-soc/merge-upstream
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