diff --git a/files/routes/posts.py b/files/routes/posts.py index 4aa2c7f874..01b52b720d 100644 --- a/files/routes/posts.py +++ b/files/routes/posts.py @@ -465,12 +465,7 @@ def thumbnail_thread(pid): db = db_session() - post = get_post(pid, graceful=True, session=db) - if not post: - # account for possible follower lag - time.sleep(60) - post = get_post(pid, session=db) - + post = db.query(Submission).filter_by(id=pid).first() fetch_url=post.url