Skip to content

Commit

Permalink
revert cookie name
Browse files Browse the repository at this point in the history
  • Loading branch information
alxndrsn committed Dec 4, 2024
1 parent 3274fd4 commit cb77e56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/resources/oidc.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const ONE_HOUR = 60 * 60 * 1000;
// * https://bugzilla.mozilla.org/show_bug.cgi?id=1648993
// * https://bugs.chromium.org/p/chromium/issues/detail?id=1056543
const CODE_VERIFIER_COOKIE = (HTTPS_ENABLED ? '__Secure-' : '') + 'ocv';
const STATE_COOKIE = (HTTPS_ENABLED ? '__Secure-' : '') + 'oidc'; // eslint-disable-line no-multi-spaces
const STATE_COOKIE = (HTTPS_ENABLED ? '__Secure-' : '') + 'next'; // eslint-disable-line no-multi-spaces
const callbackCookieProps = {
httpOnly: true,
secure: HTTPS_ENABLED,
Expand Down

0 comments on commit cb77e56

Please sign in to comment.