fix: resolve crash loading file based serviceworkers (#20132)

This commit is contained in:
John Kleinschmidt 2019-09-05 21:01:22 -04:00 committed by Cheng Zhao
parent 20e3c519dd
commit 7be1905023
2 changed files with 2 additions and 3 deletions

View file

@ -695,7 +695,7 @@ void ProxyingURLLoaderFactory::CreateLoaderAndStart(
// Intercept file:// protocol to support asar archives.
if (request.url.SchemeIsFile()) {
asar::CreateAsarURLLoader(request, std::move(loader), std::move(client),
nullptr);
new net::HttpResponseHeaders(""));
return;
}