Remove invalid X-Frame-Options: ALLOWALL (#25070)

lolsob-rspec
Claire 2023-05-23 14:27:17 +02:00 committed by GitHub
parent 29ca815465
commit 0b4d3bf363
2 changed files with 2 additions and 2 deletions

View File

@ -45,6 +45,6 @@ class MediaController < ApplicationController
end
def allow_iframing
response.headers['X-Frame-Options'] = 'ALLOWALL'
response.headers.delete('X-Frame-Options')
end
end

View File

@ -45,7 +45,7 @@ class StatusesController < ApplicationController
return not_found if @status.hidden? || @status.reblog?
expires_in 180, public: true
response.headers['X-Frame-Options'] = 'ALLOWALL'
response.headers.delete('X-Frame-Options')
render layout: 'embedded'
end