This commit is contained in:
Aevann1 2021-08-09 21:04:19 +02:00
parent 8abf3148ed
commit 888d2d47f3

View file

@ -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)