diff options
author | beatrix <beatrix.bitrot@gmail.com> | 2017-12-16 09:26:48 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-16 09:26:48 -0500 |
commit | e202efdf8a11a5e2fdcc029c46f972ca517f452e (patch) | |
tree | 213e59a42600c81edce0beec1f0ae9870cbdbaf5 /app/controllers/accounts_controller.rb | |
parent | 5325c2ab3e11652e7620f45954ef025e1ac9d833 (diff) | |
parent | 82b2e224a26765caf743b24844912faa2de9873a (diff) |
Merge pull request #253 from glitch-soc/prevent-local-only-federation
prevent federation of local-only statuses
Diffstat (limited to 'app/controllers/accounts_controller.rb')
-rw-r--r-- | app/controllers/accounts_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/accounts_controller.rb b/app/controllers/accounts_controller.rb index 309cb65da..31144fe05 100644 --- a/app/controllers/accounts_controller.rb +++ b/app/controllers/accounts_controller.rb @@ -49,7 +49,7 @@ class AccountsController < ApplicationController end def default_statuses - @account.statuses.where(visibility: [:public, :unlisted]) + @account.statuses.not_local_only.where(visibility: [:public, :unlisted]) end def only_media_scope |