about summary refs log tree commit diff
path: root/app/models
diff options
context:
space:
mode:
authorReverite <github@reverite.sh>2019-07-14 17:11:17 -0700
committerReverite <github@reverite.sh>2019-07-14 17:11:17 -0700
commit40fd56351f0a466e0e3785cca4ee27f2a9060e8a (patch)
treee4fa448c7b88988be3b8cb595d0671b21b49ab65 /app/models
parent7d99f12fd03cf2f861d0747c3bbcd4a8cf454d99 (diff)
parent5ccd011cc3bafc00a557dabbb47da004f3d4a381 (diff)
Merge branch 'glitch' into production
Diffstat (limited to 'app/models')
-rw-r--r--app/models/status.rb2
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') }