We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
New parameter added to setCookie function is not used and no method to set
setCookie: function (cookieName, cookieValue, maxAge, path, domain, secure, samesite) {
function createTLTSIDCookie() { var cookieValue = generateTLTSID(), secure = !!moduleConfig.secureTLTSID; // Set the session cookie utils.setCookie(tltCookieName, cookieValue, undefined, undefined, undefined, secure);
Would expect this code:
function createTLTSIDCookie() { var cookieValue = generateTLTSID(), secure = !!moduleConfig.secureTLTSID, samesite = moduleConfig.samesite; // Set the session cookie utils.setCookie(tltCookieName, cookieValue, undefined, undefined, undefined, secure, samesite);
The text was updated successfully, but these errors were encountered:
Thank you bring this to our attention, this will be addressed in next release.
Sorry, something went wrong.
No branches or pull requests
New parameter added to setCookie function is not used and no method to set
setCookie: function (cookieName, cookieValue, maxAge, path, domain, secure, samesite) {
Would expect this code:
The text was updated successfully, but these errors were encountered: