From 4c6e7ce5255e83cc4f5bbd64f78b9fc12f11780e Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Mon, 16 Jan 2023 21:33:32 +0000 Subject: [PATCH] Don't show copyright icon on reminder posts --- webapp_post.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webapp_post.py b/webapp_post.py index 6b405b3d2..9979c23f3 100644 --- a/webapp_post.py +++ b/webapp_post.py @@ -1667,7 +1667,7 @@ def _get_footer_with_icons(show_icons: bool, footer_str += delete_str + mute_str + edit_str + buy_str if not is_news_post(post_json_object): footer_str += ' ' - if content_license_url: + if content_license_url and not is_reminder(post_json_object): footer_str += _get_copyright_footer(content_license_url, translate) # show the date @@ -2409,7 +2409,7 @@ def individual_post_as_html(signing_priv_key_pem: str, footer_str = '' else: footer_str = '
\n' - if content_license_url: + if content_license_url and not is_reminder(post_json_object): footer_str += _get_copyright_footer(content_license_url, translate) conv_link = '/users/' + nickname + '?convthread=' + \