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
this library save expires with another cookie, I don't know why this way instead of cookie expires attribute, also another drawback, if you save a string value, it will be serialized by JSON.stringify() , which means double quotes will be part of you value. you need to strip it out if cookie being passed to your server. for example, a token,
token = "abcdef", but you got token = '\"abcdef\"'
There seems to be an issue with cookieStorage.js which doesn't seem to accept the expiry set for cookies. The expiry is hardcoded ->
store.js/storages/cookieStorage.js
Line 43 in b8e22fe
Shouldn't the user be allowed to set it or fallback to default?
The text was updated successfully, but these errors were encountered: