This commit is contained in:
velzie 2024-08-09 21:08:06 -04:00
parent 9b5f15665c
commit 2a9f5f371a
No known key found for this signature in database
GPG key ID: 048413F95F0DDE1F

View file

@ -86,12 +86,6 @@ export async function swfetch(
if (cookies.length) { if (cookies.length) {
headers.set("Cookie", cookies.join(";")); headers.set("Cookie", cookies.join(";"));
} }
if (url.href.includes("bulk")) {
console.log(url, {
headers: Object.entries(headers.headers),
bod: request.body,
});
}
// TODO this is wrong somehow // TODO this is wrong somehow
headers.set("Sec-Fetch-Mode", "navigate"); headers.set("Sec-Fetch-Mode", "navigate");
@ -103,7 +97,7 @@ export async function swfetch(
credentials: "omit", credentials: "omit",
mode: request.mode === "cors" ? request.mode : "same-origin", mode: request.mode === "cors" ? request.mode : "same-origin",
cache: request.cache, cache: request.cache,
redirect: "manual", redirect: request.redirect,
//@ts-ignore why the fuck is this not typed mircosoft //@ts-ignore why the fuck is this not typed mircosoft
duplex: "half", duplex: "half",
}); });