Fix OCR not working on Safari because of unsupported worker-src CSP (#13323)
Fixes #13321
This commit is contained in:
parent
bf1919e44a
commit
7ddbbdea6d
1 changed files with 2 additions and 0 deletions
|
@ -32,10 +32,12 @@ Rails.application.config.content_security_policy do |p|
|
|||
|
||||
p.connect_src :self, :data, :blob, assets_host, media_host, Rails.configuration.x.streaming_api_base_url, *webpacker_urls
|
||||
p.script_src :self, :unsafe_inline, :unsafe_eval, assets_host
|
||||
p.child_src :self, :blob, assets_host
|
||||
p.worker_src :self, :blob, assets_host
|
||||
else
|
||||
p.connect_src :self, :data, :blob, assets_host, media_host, Rails.configuration.x.streaming_api_base_url
|
||||
p.script_src :self, assets_host
|
||||
p.child_src :self, :blob, assets_host
|
||||
p.worker_src :self, :blob, assets_host
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue