diff options
author | Moonchild <moonchild@palemoon.org> | 2020-07-24 11:09:54 +0000 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2020-07-24 11:09:54 +0000 |
commit | 84cb854842cb4aecc2a3bee93c7a2698715643c8 (patch) | |
tree | f28ffddfafdd5da6139e8a33151c8358e35d6b86 /dom/workers/ServiceWorkerScriptCache.cpp | |
parent | 1e0bb1d355ffd55311f9544b35cff2a58b0340a8 (diff) | |
download | uxp-84cb854842cb4aecc2a3bee93c7a2698715643c8.tar.gz |
Issue #1587 Part 11 (followup 1): Implement multithreaded signals for workers.
Diffstat (limited to 'dom/workers/ServiceWorkerScriptCache.cpp')
-rw-r--r-- | dom/workers/ServiceWorkerScriptCache.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dom/workers/ServiceWorkerScriptCache.cpp b/dom/workers/ServiceWorkerScriptCache.cpp index 707b689e8a..3db58e694a 100644 --- a/dom/workers/ServiceWorkerScriptCache.cpp +++ b/dom/workers/ServiceWorkerScriptCache.cpp @@ -554,7 +554,7 @@ private: ir->SetPrincipalInfo(Move(mPrincipalInfo)); } - RefPtr<Response> response = new Response(aCache->GetGlobalObject(), ir); + RefPtr<Response> response = new Response(aCache->GetGlobalObject(), ir, nullptr); RequestOrUSVString request; request.SetAsUSVString().Rebind(URL().Data(), URL().Length()); |