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
The random _id in the name creates 100+ different cookies over time and sooner or later leads to HTTP error code 431 Request Header Fields Too Large and site stops responding...
I changed this:
if (!window.name) {
window.name = Math.random();
}
to this:
if (!window.name) {
window.name = 'fixedName';
}
which fixes it.
Is there a specific reason you are using the random name?
Regards,
Alex
The text was updated successfully, but these errors were encountered:
The random _id in the name creates 100+ different cookies over time and sooner or later leads to HTTP error code 431 Request Header Fields Too Large and site stops responding...
I changed this:
to this:
which fixes it.
Is there a specific reason you are using the random name?
Regards,
Alex
The text was updated successfully, but these errors were encountered: