about summary refs log tree commit diff
path: root/app
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2017-09-07 20:18:34 +0200
committerGitHub <noreply@github.com>2017-09-07 20:18:34 +0200
commitdd6ede554fa0c0c6c7e6f3c74226a4ae64165999 (patch)
treef95dab71336971e6ab08fff360cd810288428cd6 /app
parent6859d4c0289e767955aac3f345074220fe200604 (diff)
Fix #4834 - Adjust Status#local and Status#remote scopes (#4839)
Diffstat (limited to 'app')
-rw-r--r--app/models/status.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/models/status.rb b/app/models/status.rb
index fdc230d8f..514cab2e4 100644
--- a/app/models/status.rb
+++ b/app/models/status.rb
@@ -63,8 +63,8 @@ class Status < ApplicationRecord
   default_scope { recent }
 
   scope :recent, -> { reorder(id: :desc) }
-  scope :remote, -> { where.not(uri: nil) }
-  scope :local, -> { where(uri: nil) }
+  scope :remote, -> { where(local: false).or(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') }
   scope :without_reblogs, -> { where('statuses.reblog_of_id IS NULL') }