diff --git a/files/routes/front.py b/files/routes/front.py index 9fa1b6935..98d358da5 100644 --- a/files/routes/front.py +++ b/files/routes/front.py @@ -180,11 +180,13 @@ def frontlist(v=None, sort="hot", page=1,t="all", ids_only=True, filter_words='' return posts @app.get("/") +@app.get("/logged_out") @auth_desired def front_all(v): - if v and v.is_banned and not v.unban_utc: return render_template("seized.html") + if not v and request.full_path == "/": return redirect("/logged_out") + try: page = int(request.args.get("page") or 1) except: abort(400)