remotes/1693045480750635534/spooky-22
Aevann1 2021-08-13 03:55:23 +02:00
parent f88be9a205
commit 80224309f0
3 changed files with 8 additions and 0 deletions

View File

@ -34,6 +34,8 @@ def post_pid_comment_cid(cid, pid=None, anything=None, v=None):
if not v and "logged_out" not in request.path: return redirect(f"/logged_out/comment/{cid}")
if v and "logged_out" in request.path: return redirect(f"/comment/{cid}")
try: cid = int(cid)
except:
try: cid = int(cid, 36)

View File

@ -53,6 +53,8 @@ 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 v and "logged_out" in request.path: return redirect(f"/post/{pid}")
try: pid = int(pid)
except Exception as e: pass

View File

@ -281,6 +281,8 @@ def u_username(username, v=None):
if not v and "logged_out" not in request.path: return redirect(f"/logged_out/@{username}")
if v and "logged_out" in request.path: return redirect(f"/@{username}")
# username is unique so at most this returns one result. Otherwise 404
# case insensitive search
@ -400,6 +402,8 @@ def u_username_comments(username, v=None):
if not v and "logged_out" not in request.path: return redirect(f"/logged_out/@{username}/comments")
if v and "logged_out" in request.path: return redirect(f"/@{username}/comments")
# username is unique so at most this returns one result. Otherwise 404
# case insensitive search