Browse Source

fix(Register): name of SID cookie was not respected on register

Kristian Vos 3 years ago
parent
commit
ca52fb329e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      frontend/src/api/auth.js

+ 1 - 1
frontend/src/api/auth.js

@@ -34,7 +34,7 @@ export default {
 								if (cookie.domain !== "localhost")
 									domain = ` domain=${cookie.domain};`;
 
-								document.cookie = `SID=${
+								document.cookie = `${cookie.SIDname}=${
 									res.SID
 								}; expires=${date.toGMTString()}; ${domain}${secure}path=/`;