From 279e9a8f4748b1d1c01f116786d697477e13af49 Mon Sep 17 00:00:00 2001 From: multiple creatures Date: Fri, 21 Feb 2020 23:20:30 -0600 Subject: include community visibility as part of posts visible from profile --- app/controllers/accounts_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/controllers') 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 -- cgit