From ba1edf97681f90bb02263e6bfb0098b3e12bc09d Mon Sep 17 00:00:00 2001 From: Lynne Date: Thu, 19 Sep 2019 19:54:28 +1000 Subject: [PATCH] fixed another bad link --- app/webui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/webui.py b/app/webui.py index f479722..334e69d 100644 --- a/app/webui.py +++ b/app/webui.py @@ -35,7 +35,7 @@ def login_check(): if request.path not in ['/', '/about', '/welcome', '/login', '/signup', '/do/login', '/do/signup', '/static/style.css'] and not request.path.startswith("/push"): # page requires authentication if 'user_id' not in session: - return redirect(url_for('home')) + return redirect(url_for('render_home')) @app.route("/") def render_home():