nigg
This commit is contained in:
parent
d8c598f675
commit
893de9965e
2 changed files with 4 additions and 6 deletions
|
@ -28,11 +28,9 @@ beams_client = PushNotifications(
|
||||||
@auth_desired
|
@auth_desired
|
||||||
def post_pid_comment_cid(cid, pid=None, anything=None, v=None):
|
def post_pid_comment_cid(cid, pid=None, anything=None, v=None):
|
||||||
|
|
||||||
|
if not v and not request.path.startswith('/logged_out'): return redirect(f"/logged_out/comment/{cid}")
|
||||||
|
|
||||||
|
if v and request.full_path.startswith('/logged_out'): 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.full_path: v = None
|
|
||||||
|
|
||||||
try: cid = int(cid)
|
try: cid = int(cid)
|
||||||
except:
|
except:
|
||||||
|
|
|
@ -78,9 +78,9 @@ def submit_get(v):
|
||||||
@auth_desired
|
@auth_desired
|
||||||
def post_id(pid, anything=None, v=None):
|
def post_id(pid, anything=None, v=None):
|
||||||
|
|
||||||
if not v and "logged_out" not in request.path and not request.headers.get("Authorization"): return redirect(f"/logged_out/post/{pid}")
|
if not v and not request.path.startswith('/logged_out') and not request.headers.get("Authorization"): return redirect(f"/logged_out/post/{pid}")
|
||||||
|
|
||||||
if v and "logged_out" in request.full_path: v = None
|
if v and request.full_path.startswith('/logged_out'): v = None
|
||||||
|
|
||||||
try: pid = int(pid)
|
try: pid = int(pid)
|
||||||
except Exception as e: pass
|
except Exception as e: pass
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue