This commit is contained in:
Aevann1 2021-09-04 03:09:19 +02:00
parent 9c9df57988
commit cada51f145
2 changed files with 2 additions and 2 deletions

View file

@ -51,7 +51,7 @@ def submit_get(v):
@auth_desired
def post_id(pid, anything=None, v=None):
if not v and "logged_out" not in request.path: return redirect(f"/logged_out/post/{pid}")
if not v and "logged_out" not in request.path and not request.headers.get("Authorization"): return redirect(f"/logged_out/post/{pid}")
if v and "logged_out" in request.full_path: v = None