Skip to content
Snippets Groups Projects
Commit e87f4603 authored by Johan Thörnblom's avatar Johan Thörnblom
Browse files

mm

parent c96092e2
No related branches found
No related tags found
No related merge requests found
......@@ -203,7 +203,10 @@ def sign_out():
print(session)
# set user to not logged in
session.pop(token)
try:
session.pop(token)
except:
pass # samma sak som ingenting
return jsonify({}), 204 # "Successfully signed out")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment