diff --git a/website/webinterface.py b/website/webinterface.py index a9efa6e..218b5b5 100644 --- a/website/webinterface.py +++ b/website/webinterface.py @@ -65,6 +65,9 @@ def teamspeakClientCheck(clientName): @app.route("/") def index(): + if 'username' in session: + #No longer in the checkout flow, reset! + session.pop('username', None) return render_template("index.html") @app.route("/collectsunlight")