From cdd9550223723e9cc4f8daa9c6a52bfcec51e209 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Mon, 31 Jul 2023 14:18:31 +0100 Subject: [PATCH] Define variable earlier --- webapp_post.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp_post.py b/webapp_post.py index 6b29107d2..623312668 100644 --- a/webapp_post.py +++ b/webapp_post.py @@ -1524,6 +1524,7 @@ def _get_post_title_reply_html(base_dir: str, # has a reply reply_actor = None + in_reply_to = None if '/statuses/' not in obj_json['inReplyTo']: post_domain = obj_json['inReplyTo'] prefixes = get_protocol_prefixes() @@ -1564,7 +1565,6 @@ def _get_post_title_reply_html(base_dir: str, return (title_str, reply_avatar_image_in_post, container_class_icons, container_class) - in_reply_to = None if obj_json.get('inReplyTo'): if isinstance(obj_json['inReplyTo'], str): in_reply_to = obj_json['inReplyTo']