remotes/1693045480750635534/spooky-22
Aevann1 2021-10-01 22:10:29 +02:00
parent faad89a968
commit ee683e227d
1 changed files with 4 additions and 4 deletions

View File

@ -395,9 +395,9 @@ def visitors(v):
def u_username(username, v=None):
if not v and "logged_out" not in request.path: return redirect(f"/logged_out{request.full_path}")
if not v and not request.path.startswith('logged_out'): return redirect(f"/logged_out{request.full_path}")
if v and "logged_out" in request.full_path: v = None
if v and request.path.startswith('logged_out'): v = None
# username is unique so at most this returns one result. Otherwise 404
@ -508,9 +508,9 @@ def u_username(username, v=None):
def u_username_comments(username, v=None):
if not v and "logged_out" not in request.path: return redirect(f"/logged_out{request.full_path}")
if not v and not request.path.startswith('logged_out'): return redirect(f"/logged_out{request.full_path}")
if v and "logged_out" in request.full_path: v = None
if v and request.path.startswith('logged_out'): v = None
# username is unique so at most this returns one result. Otherwise 404