diff --git a/app/chewy/statuses_index.rb b/app/chewy/statuses_index.rb index 0cea76813e..d779a226a2 100644 --- a/app/chewy/statuses_index.rb +++ b/app/chewy/statuses_index.rb @@ -65,10 +65,7 @@ class StatusesIndex < Chewy::Index root date_detection: false do field :id, type: 'long' field :account_id, type: 'long' - field :created_at, type: 'date' field :visibility, type: 'keyword' - field :from, type: 'keyword', value: ->(status) { status.account.domain ? [status.account.acct] : [status.account.acct, "#{status.account.username}@#{Rails.configuration.x.local_domain}"] } - field :domain, value: ->(status) { status.account.domain or Rails.configuration.x.local_domain } field :text, type: 'text', value: ->(status) { status.searchable_text } do field :stemmed, type: 'text', analyzer: 'content'