From 109300db1d77b78efcff8144f0d59eeb401a8c31 Mon Sep 17 00:00:00 2001 From: multiple creatures Date: Fri, 7 Feb 2020 21:14:32 -0600 Subject: revert & revise `3631689bd`, fix broken 404 pages --- app/controllers/accounts_controller.rb | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'app') diff --git a/app/controllers/accounts_controller.rb b/app/controllers/accounts_controller.rb index 07d364714..3359eafdf 100644 --- a/app/controllers/accounts_controller.rb +++ b/app/controllers/accounts_controller.rb @@ -13,12 +13,13 @@ class AccountsController < ApplicationController respond_to do |format| format.html do use_pack 'public' - unless current_account && current_account.id == @account.id - raise_not_found if @account.hidden - if @account&.user && @account.user.hides_public_profile? - raise_not_found unless current_account&.following?(@account) + + unless current_account&.id == @account.id + if @account.hidden || @account&.user&.hides_public_profile? + return not_found unless current_account&.following?(@account) end end + expires_in 0, public: true unless user_signed_in? @pinned_statuses = [] @@ -43,10 +44,11 @@ class AccountsController < ApplicationController format.rss do expires_in 1.minute, public: true - raise_not_found unless current_account&.user&.allows_rss? + return not_found unless current_account&.user&.allows_rss? @statuses = filtered_statuses.without_reblogs.without_replies.limit(PAGE_SIZE) @statuses = cache_collection(@statuses, Status) + render xml: RSS::AccountSerializer.render(@account, @statuses, params[:tag]) end -- cgit