diff --git a/app.py b/app.py index c72a78f..23b6dbc 100644 --- a/app.py +++ b/app.py @@ -210,7 +210,7 @@ def create_app(config=Config): @login_required def dashboard(): if request.method == 'GET': - if not current_user.is_authenticated: + if current_user.is_authenticated == False: return redirect(url_for('thelogin')) else: invite_code = str(uuid4())