Unverified Commit b8199abd authored by David Iglesias's avatar David Iglesias Committed by GitHub

[flutter_tools] Prevent web ServiceWorker from modifying fetch requests. (#50312)

parent 82410a5a
......@@ -358,9 +358,7 @@ self.addEventListener('fetch', function (event) {
if (response) {
return response;
}
return fetch(event.request, {
credentials: 'include'
});
return fetch(event.request);
})
);
});
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment