-
Notifications
You must be signed in to change notification settings - Fork 18
Open
Description
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);
Metadata
Metadata
Assignees
Labels
No labels