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
{{ message }}
This repository was archived by the owner on Apr 18, 2025. It is now read-only.
I found an issue with cookie_manager.set method. It seems that when the expires_at parameter is not set in your Python code, it doesn't actually default to 720 minutes (as stated in the documentation), but in fact - the cookie is not set at all. That's due to this line in the frontend code:
The expression new Date(expires) always returns a Date object, even when the expires value is false, undefined, 0, null or an empty string. That's why this expression never falls back to the default value.
I would suggest changing that line to something like:
Until this bug is fixed, let everyone know that you should set the expires_at in your Python code (and pay close attention to the timezone - like mentioned in the example in the docs)