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
CookieBrowser service in some browsers (tested with ionic in android) the service is not removing all the cookies, so the session continue logued.
The problem is that in some browsers you have to add the path at the end of the expires. From w3school:
You should define the cookie path to ensure that you delete the right cookie.
Some browsers will not let you delete a cookie if you don't specify the path.
So the line 34 of the file cookie.browser.ts should be: js document.cookie = key + '=; expires=Thu, 01 Jan 1970 00:00:01 GMT;path=/;';
The text was updated successfully, but these errors were encountered:
What type of issue are you creating?
What version of this module are you using?
CookieBrowser service in some browsers (tested with ionic in android) the service is not removing all the cookies, so the session continue logued.
The problem is that in some browsers you have to add the path at the end of the expires. From w3school:
So the line 34 of the file cookie.browser.ts should be:
js document.cookie = key + '=; expires=Thu, 01 Jan 1970 00:00:01 GMT;path=/;';
The text was updated successfully, but these errors were encountered: