forked from rDrama/rDrama
1
0
Fork 0

fix 500 error

master
Aevann 2023-07-26 16:19:50 +03:00
parent 4aea4434ba
commit 65c277b5a6
1 changed files with 2 additions and 2 deletions

View File

@ -290,11 +290,11 @@ def thumbnail_thread(pid:int, vid:int):
else:
return f"{post_url}/{fragment_url}"
p = db.query(Post).filter_by(id=pid).options(load_only(Post.url)).one()
p = db.query(Post).filter_by(id=pid).options(load_only(Post.url)).one_or_none()
if not p or not p.url:
time.sleep(5)
p = db.query(Post).filter_by(id=pid).options(load_only(Post.url)).one()
p = db.query(Post).filter_by(id=pid).options(load_only(Post.url)).one_or_none()
if not p or not p.url: return