User Session after logout

Ok I have a bit of an issue with User Sessions.

  1. Users can create an account after which they navigated into my app home page.
  2. If the user closes the app entirely, they can reopen the app and it will automatically navigate them to the home page and not the log in screen again. They can do this as many times as they want. This is the behaviour I want.
  3. This is handled by a workflow on “page load” that checks if the “Current User is logged in”. If yes then they go to the home page and if no they go to the login screen.

However if the user clicks logout things get weird:

  1. If they log in again, they are sent to the home page (as expected). In my mind they have created a new User Session now so everything should be the same as the above.
  2. Now if they try and close the app and reopen it they never sent to the home page automatically again and they are always sent to login page.
  3. It seems like logging out destroys the session and logging back in does not create a new session or creates a new session with some modification.

I have attached some screenshots of the relevant workflows below. Any help would be much appreciated <3



Bump <3

My first test would be to see what happens if change your selection re: Remember the email to “yes”. While I’ve not tested this, my assumption is that the cookies that are used to remember the email also remember some other data related to the Current User and/or their session.

If the cookies are not capturing that data (because you have ‘no’ checked or because you don’t have cookies enabled at all) then any data on that user would be lost when they log out and close their browser.

This topic was automatically closed after 70 days. New replies are no longer allowed.