forked from rDrama/rDrama
1
0
Fork 0
master
Aevann1 2021-07-31 08:59:14 +02:00
parent 5533dbb466
commit b1b9c6391d
1 changed files with 3 additions and 1 deletions

View File

@ -67,7 +67,9 @@ def post_id(pid, anything=None, v=None):
try: pid = int(pid)
except: pid = int(pid, 36)
except:
try: pid = int(pid, 36)
except: abort(404)
post = get_post(pid, v=v)