Skip to content
Snippets Groups Projects
Unverified Commit 7ddbbdea authored by ThibG's avatar ThibG Committed by GitHub
Browse files

Fix OCR not working on Safari because of unsupported worker-src CSP (#13323)

Fixes #13321
parent bf1919e4
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment