This commit is contained in:
Aevann1 2021-08-13 04:01:54 +02:00
parent ff17fce54d
commit 774647c7e8

View file

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