1
0
Fork 0
mirror of https://github.com/24eme/signaturepdf synced 2026-03-14 13:55:44 +01:00

Cookie path fixed

This commit is contained in:
Vincent LAURENT 2024-07-30 15:37:36 +02:00
commit bfd83537a4

View file

@ -1201,7 +1201,7 @@ function storeSymmetricKeyCookie(hash, symmetricKey) {
console.error("Erreur taille cle symétrique.");
return;
}
document.cookie = hash + "=" + symmetricKey + "; SameSite=Lax;";
document.cookie = hash + "=" + symmetricKey + "; SameSite=Lax; Path=/;";
}
function getSymmetricKey(hash) {