Skip to content

Commit

Permalink
Remove set-cookie header on custom.css (mastodon#16314)
Browse files Browse the repository at this point in the history
* Remove set-cookie header on custom.css

* Additional fix for set-cookie
  • Loading branch information
tribela authored and ClearlyClaire committed Jan 28, 2022
1 parent c89809a commit 678e0ad
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions app/controllers/custom_css_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,16 @@
class CustomCssController < ApplicationController
skip_before_action :store_current_location
skip_before_action :require_functional!
skip_before_action :update_user_sign_in
skip_before_action :set_session_activity

skip_around_action :set_locale

before_action :set_cache_headers

def show
expires_in 3.minutes, public: true
request.session_options[:skip] = true
render plain: Setting.custom_css || '', content_type: 'text/css'
end
end

0 comments on commit 678e0ad

Please sign in to comment.