~cytrogen/masto-fe

9f67e3b9cccb49efd3f3728e0d1a5f68378a11c5 — ThibG 6 years ago c40d47b
Fix Status.remote scope matching *all* statuses (#11265)

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

M app/models/status.rb
M app/models/status.rb => app/models/status.rb +1 -1
@@ 82,7 82,7 @@ class Status < ApplicationRecord
  default_scope { recent }

  scope :recent, -> { reorder(id: :desc) }
  scope :remote, -> { where(local: false).or(where.not(uri: nil)) }
  scope :remote, -> { where(local: false).where.not(uri: nil) }
  scope :local,  -> { where(local: true).or(where(uri: nil)) }

  scope :without_replies, -> { where('statuses.reply = FALSE OR statuses.in_reply_to_account_id = statuses.account_id') }