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
Cookies are not removed if the server deletes them
Example:
"SESS61c42da5939b03e7ce094fcacb127d7a=deleted; expires=Thu, 01 Jan 1970 00:00:01 GMT; Max-Age=0; path=/; HttpOnly"
This should delete the cookie. Instead the CGI worker sets the value to deleted. Which kind of works, because the session isn't matched. But not entirely.
The text was updated successfully, but these errors were encountered:
I'm working around with this a custom map. However, it doesn't handle the expiry time
classCookieMapextendsMap{constructor(iterable){super(iterable);}set(key,value){console.table({ key, value })if(value==='deleted'){super.delete(key)}else{super.set(key,value)}}}
Cookies are not removed if the server deletes them
Example:
This should delete the cookie. Instead the CGI worker sets the value to
deleted
. Which kind of works, because the session isn't matched. But not entirely.The text was updated successfully, but these errors were encountered: