From 53e1a15038b43c57c3daaee215422418b597e1f6 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sat, 11 Mar 2023 20:45:47 +0000 Subject: [PATCH] Don't show announce icon for images without descriptions --- webapp_utils.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/webapp_utils.py b/webapp_utils.py index ff51a2354..231d555aa 100644 --- a/webapp_utils.py +++ b/webapp_utils.py @@ -1357,6 +1357,10 @@ def get_post_attachments_as_html(base_dir: str, gallery_str += \ '
' gallery_str += '
\n' + # don't show the announce icon if there is no image + # description + if not image_description: + announce_str = '' gallery_str += \ ' ' + reply_str + announce_str + like_str + \ bookmark_str + delete_str + mute_str + '\n'