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);
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: