aboutsummaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorFuwn <[email protected]>2026-05-21 13:44:59 +0000
committerFuwn <[email protected]>2026-05-21 13:44:59 +0000
commitd9244d6f3cef8d6d7cba9b00fce2b25621742616 (patch)
tree1a8e5d6e18e05e2159e5dc2fa76d1f3ba28f7ddb /src/lib
parentfeat(debug): add dry-run mutations mode (diff)
downloaddue.moe-d9244d6f3cef8d6d7cba9b00fce2b25621742616.tar.xz
due.moe-d9244d6f3cef8d6d7cba9b00fce2b25621742616.zip
fix(settings): send JSON Content-Type on configuration PUTsHEADmain
fetch() defaults a string body to text/plain, which SvelteKit's csrf_check_origin treats as a form submission. Behind portless's HTTPS-to-HTTP dev proxy the Origin scheme mismatches url.origin and the requests 403'd. Declaring application/json is correct for the body and bypasses the form-content-type check.
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/CommandPalette/syncActions.ts1
-rw-r--r--src/lib/Settings/Categories/SettingSync.svelte2
2 files changed, 3 insertions, 0 deletions
diff --git a/src/lib/CommandPalette/syncActions.ts b/src/lib/CommandPalette/syncActions.ts
index 49859221..90c6a931 100644
--- a/src/lib/CommandPalette/syncActions.ts
+++ b/src/lib/CommandPalette/syncActions.ts
@@ -24,6 +24,7 @@ export const syncActions = (
fetch(root(`/api/configuration`), {
method: "PUT",
+ headers: { "Content-Type": "application/json" },
body: JSON.stringify(get(settings)),
})
.then((response) => {
diff --git a/src/lib/Settings/Categories/SettingSync.svelte b/src/lib/Settings/Categories/SettingSync.svelte
index 0cfe9261..867b2b47 100644
--- a/src/lib/Settings/Categories/SettingSync.svelte
+++ b/src/lib/Settings/Categories/SettingSync.svelte
@@ -29,6 +29,7 @@ import settingsSyncTimes from "$stores/settingsSyncTimes";
} else {
fetch(root(`/api/configuration`), {
method: 'PUT',
+ headers: { 'Content-Type': 'application/json' },
body: JSON.stringify($settings)
}).then((response) => {
if (response.ok)
@@ -56,6 +57,7 @@ import settingsSyncTimes from "$stores/settingsSyncTimes";
fetch(root(`/api/configuration`), {
method: 'PUT',
+ headers: { 'Content-Type': 'application/json' },
body: JSON.stringify($settings)
}).then((response) => {
if (response.ok)