diff --git a/webapp_post.py b/webapp_post.py index 5172cfac..c3bf9b15 100644 --- a/webapp_post.py +++ b/webapp_post.py @@ -270,12 +270,13 @@ def getReplyIconHtml(nickname: str, isPublicRepeat: bool, replyToLink += pageNumberParam replyStr = '' + replyToThisPostStr = translate['Reply to this post'] if isPublicRepeat: replyStr += \ ' \n' + '" title="' + replyToThisPostStr + '">\n' else: if isDM(postJsonObject): replyStr += \ @@ -283,20 +284,19 @@ def getReplyIconHtml(nickname: str, isPublicRepeat: bool, '\n' + '" title="' + replyToThisPostStr + '">\n' else: replyStr += \ ' ' + \ '\n' + '" title="' + replyToThisPostStr + '">\n' replyStr += \ ' ' + \ '' + \
-        translate['Reply to this post'] + \
+        replyToThisPostStr + '\n' return replyStr