You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm not sure if this can be fixed at the cookie reading level. If not, at least a mention in the documentation would be good, as this can break the site - the bar will show up on every request, or the changes won't be saved and you'll lose analytics.
To be precise, the changes will be saved, but they will be read again from the bad one - the original one.
Version
all
On which browser do you see the issue?
No response
The text was updated successfully, but these errors were encountered:
We're using this JS snippet as a hotfix in GTM. Note the URL www.exmaple.com - this is because we use the .example.com, so it removes the previous set one.
<script>
CookieConsentWrapper.on('init', function () {
var cookieName = CookieConsentWrapper.unwrap().getConfig('cookie_name');
if (1 < document.cookie.split(/;\s*/).filter(function (c) {
return cookieName === c.split('=').shift();
}).length) {
CookieConsentWrapper.unwrap().eraseCookies([cookieName], undefined, 'www.example.cz');
}
});
</script>
Expected Behavior
If user set consent on some particular domain/subdomain, the cookie bar should read from the relevant cookie.
Current Behavior
The cookie bar gets the first cookie it gets, which can lead to a broken cookie bar (still showing).
Steps to reproduce
www.example.com
.example.com
or vice versa
Proposed fix or additional info.
It's related to how cookies are stored and read, see https://stackoverflow.com/questions/4056306/how-to-handle-multiple-cookies-with-the-same-name/24214538#24214538
68publishers/cookie-consent#79 (comment)
I'm not sure if this can be fixed at the cookie reading level. If not, at least a mention in the documentation would be good, as this can break the site - the bar will show up on every request, or the changes won't be saved and you'll lose analytics.
To be precise, the changes will be saved, but they will be read again from the bad one - the original one.
Version
all
On which browser do you see the issue?
No response
The text was updated successfully, but these errors were encountered: