diff options
author | ThibG <thib@sitedethib.com> | 2019-07-08 18:17:22 +0200 |
---|---|---|
committer | Thibaut Girka <thib@sitedethib.com> | 2019-07-15 00:48:50 +0200 |
commit | 9f67e3b9cccb49efd3f3728e0d1a5f68378a11c5 (patch) | |
tree | cf371cb06a2a43063c273e4815f6a14c005569e8 /app | |
parent | c40d47b8e09fb317b1e2541debeafc96ddd58d6f (diff) |
Fix Status.remote scope matching *all* statuses (#11265)
Diffstat (limited to 'app')
-rw-r--r-- | app/models/status.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/status.rb b/app/models/status.rb index 5ddce72de..5adccb722 100644 --- a/app/models/status.rb +++ b/app/models/status.rb @@ -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') } |