From e2dd9d9e6eb89611adff543f1ae6c5fb9dc46683 Mon Sep 17 00:00:00 2001 From: Reimar Date: Mon, 31 Mar 2025 11:00:11 +0200 Subject: [PATCH 1/2] Fix cookie path --- frontend/scripts/login.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/scripts/login.js b/frontend/scripts/login.js index 74a8f33..68e7048 100644 --- a/frontend/scripts/login.js +++ b/frontend/scripts/login.js @@ -10,7 +10,7 @@ document.getElementById("loginForm").addEventListener("submit", function(event) login(emailOrUsername, password) .then(response => { - document.cookie = `auth-token=${response.token}`; + document.cookie = `auth-token=${response.token}; Path=/`; localStorage.setItem("user", { id: response.id, From fb3705690d0d7075386517a80d66cbd92d2ec53e Mon Sep 17 00:00:00 2001 From: Reimar Date: Mon, 31 Mar 2025 11:03:38 +0200 Subject: [PATCH 2/2] Don't send undefined content type in frontend --- frontend/shared/utils.js | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/frontend/shared/utils.js b/frontend/shared/utils.js index 08c045c..f6a17c7 100644 --- a/frontend/shared/utils.js +++ b/frontend/shared/utils.js @@ -3,13 +3,16 @@ import { address } from "./constants.js"; export async function request(method, path, body = null) { const token = document.cookie.match(/\bauth-token=([^;\s]+)/); + const headers = {}; + if (body) + headers["Content-Type"] = "application/json"; + if (token?.length > 1) + headers["Authorization"] = `Bearer ${token[1]}`; + return new Promise((resolve, reject) => { fetch(address + path, { method, - headers: { - "Content-Type": body ? "application/json" : undefined, - "Authorization": token?.length > 1 ? `Bearer ${token[1]}` : undefined, - }, + headers, body: body ? JSON.stringify(body) : undefined, }) .then(async response => {