diff options
author | Frankie B <git@diskfloppy.me> | 2024-07-12 22:43:15 +0100 |
---|---|---|
committer | Frankie B <git@diskfloppy.me> | 2024-07-12 22:43:15 +0100 |
commit | 6f695daddceff036cb969eed268e9ada7741dc8a (patch) | |
tree | 2c70bd73709ae717af79fb2ffbd276ec644fae3c /public/js | |
parent | d0fb028c3e4a1cb51d9c1d3c964450d66c835e62 (diff) |
Use the current hostname in schemeSwap.js instead of hard coding it
Diffstat (limited to 'public/js')
-rw-r--r-- | public/js/schemeSwap.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/public/js/schemeSwap.js b/public/js/schemeSwap.js index f51443d..044df0f 100644 --- a/public/js/schemeSwap.js +++ b/public/js/schemeSwap.js @@ -26,10 +26,11 @@ function getCookie(cname) { * @param {number} exdays Cookie lifespan (days) */ function setCookie(cname, cvalue, exdays) { + const hostname = window.location.hostname; const d = new Date(); d.setTime(d.getTime() + (exdays*24*60*60*1000)); let expires = "expires="+ d.toUTCString(); - document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/;SameSite=Strict;Domain=.diskfloppy.me"; + document.cookie = `${cname}=${cvalue};${expires};path=/;SameSite=Strict;Domain=${hostname}` } /** |