From 2d8c0d012df98ad6aebcd70dd4325c4cf3202533 Mon Sep 17 00:00:00 2001 From: ZhymabekRoman Date: Mon, 10 Jun 2024 22:03:22 +0500 Subject: [PATCH] core: minor logical fixes --- server/handlers/post.py | 4 ++-- server/templates/base.html | 2 +- server/utils/exceptions.py | 6 ++++-- server/utils/notify.py | 1 + 4 files changed, 8 insertions(+), 5 deletions(-) diff --git a/server/handlers/post.py b/server/handlers/post.py index 7919b1b..e0e2f56 100644 --- a/server/handlers/post.py +++ b/server/handlers/post.py @@ -34,7 +34,7 @@ async def render_postleter(limit: int = 30, as_html: bool = False): post_metadata = await post.generate_metadata(as_dict=True) outlet_posts_list.append(post_metadata) except Exception as ex: - await handle_exception(ex, message=f"Couldn't render post_id for postleter: {post_id}") + await handle_exception(ex, message=f"Couldn't render post_id for postleter: {post_id}. Just ignore that") task = fetch_post_metadata(post_id) tasks.append(task) @@ -87,7 +87,7 @@ async def render_medium_post_link(path: str, use_cache: bool = True, use_redis: except medium_parser_exceptions.InvalidMediumPostID as ex: return await handle_exception(ex, "Unable to identify the Medium article ID.", status_code=500) except medium_parser_exceptions.NotValidMediumURL as ex: - return await handle_exception("You sure that this is a valid Medium.com URL?", status_code=404, quiet=True) + return await handle_exception(ex, "You sure that this is a valid Medium.com URL?", status_code=404, quiet=True) except Exception as ex: return await handle_exception(ex, status_code=500) else: diff --git a/server/templates/base.html b/server/templates/base.html index 3ec71ac..adffdf4 100644 --- a/server/templates/base.html +++ b/server/templates/base.html @@ -84,7 +84,7 @@ Warm regards, The Freedium Team