diff options
author | multiple creatures <dev@multiple-creature.party> | 2020-02-21 23:20:30 -0600 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2020-02-21 23:20:30 -0600 |
commit | 279e9a8f4748b1d1c01f116786d697477e13af49 (patch) | |
tree | d1b6c295c738f664ac8a50fd9ca4d848862c3eac /app/controllers | |
parent | 0c003e51189f5d9f79d7f164a4d55ad7f7d2cb0e (diff) |
include community visibility as part of posts visible from profile
Diffstat (limited to 'app/controllers')
-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 e4770b824..dd19e2498 100644 --- a/app/controllers/accounts_controller.rb +++ b/app/controllers/accounts_controller.rb @@ -101,7 +101,7 @@ class AccountsController < ApplicationController end def default_statuses - @account.statuses.not_local_only.where(visibility: [:public, :unlisted]) + @account.statuses.not_local_only.where(visibility: [:public, :unlisted, :local]) end def account_media_status_ids |