diff --git a/files/routes/front.py b/files/routes/front.py index e2040f236a..721787728c 100644 --- a/files/routes/front.py +++ b/files/routes/front.py @@ -191,6 +191,8 @@ def front_all(v): if not v and request.path == "/": return redirect("/logged_out") + if v and "logged_out" in request.path: return redirect("/") + try: page = int(request.args.get("page") or 1) except: abort(400)