From db45b01ddd48894801cc8ed83d7004bb4f3a270f Mon Sep 17 00:00:00 2001 From: Son NK Date: Tue, 6 Aug 2019 12:54:32 +0200 Subject: [PATCH] set a different SESSION_COOKIE_NAME to avoid conflict --- server.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/server.py b/server.py index 5078f137..87d35e09 100644 --- a/server.py +++ b/server.py @@ -55,6 +55,9 @@ def create_app() -> Flask: app.config["TEMPLATES_AUTO_RELOAD"] = True + # to avoid conflict with other cookie + app.config["SESSION_COOKIE_NAME"] = "slapp" + init_extensions(app) register_blueprints(app) set_index_page(app)