From 85a41dbbb1ef4e08af6d65ed331421dcdba85d77 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Mon, 6 Dec 2021 16:53:21 +0000 Subject: [PATCH] Reply publicly to public posts --- webapp_post.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/webapp_post.py b/webapp_post.py index 279a436a8..1f04fdf3c 100644 --- a/webapp_post.py +++ b/webapp_post.py @@ -1630,8 +1630,11 @@ def individualPostAsHtml(signingPrivateKeyPem: str, if postJsonObject['object']['conversation']: conversationId = postJsonObject['object']['conversation'] + publicReply = False + if isPublicPost(postJsonObject): + publicReply = True replyStr = _getReplyIconHtml(baseDir, nickname, domain, - isPublicRepeat, + publicReply, showIcons, commentsEnabled, postJsonObject, pageNumberParam, translate, systemLanguage,