diff --git a/files/routes/front.py b/files/routes/front.py index 98d358da5..9fa1b6935 100644 --- a/files/routes/front.py +++ b/files/routes/front.py @@ -180,12 +180,10 @@ 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") + if v and v.is_banned and not v.unban_utc: return render_template("seized.html") try: page = int(request.args.get("page") or 1) except: abort(400)