diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2022-11-05 00:09:52 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-05 00:09:52 +0100 |
commit | c4b92b1aee27a813e24395d43e265cc02a8fe9a3 (patch) | |
tree | fa46b103ef08a0b42fd4126b2da41d2d18c8a4d7 /app/helpers | |
parent | bb89f83cc06b9665205c62db21163f2ce43d97ed (diff) |
Fix n+1 query during status removal (#19753)
Diffstat (limited to 'app/helpers')
-rw-r--r-- | app/helpers/application_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index 9cc34cab6..8706f5c2a 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -203,7 +203,7 @@ module ApplicationHelper permit_visibilities.shift(permit_visibilities.index(default_privacy) + 1) if default_privacy.present? state_params[:visibility] = params[:visibility] if permit_visibilities.include? params[:visibility] - if user_signed_in? + if user_signed_in? && current_user.functional? state_params[:settings] = state_params[:settings].merge(Web::Setting.find_by(user: current_user)&.data || {}) state_params[:push_subscription] = current_account.user.web_push_subscription(current_session) state_params[:current_account] = current_account |