From aa93ad109d3c7a124b043288f8f498ca5a1f0ee1 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sun, 16 Aug 2020 15:25:31 +0100 Subject: [PATCH] Remove spaces --- webinterface.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webinterface.py b/webinterface.py index 0988cee5b..c58225400 100644 --- a/webinterface.py +++ b/webinterface.py @@ -3734,7 +3734,7 @@ def individualPostAsHtml(recentPostsCache: {}, maxRecentPosts: int, translate['Show options for this person'] + \ '" src="' + avatarUrl + '" ' + avatarPosition + '/>\n' avatarImageInPost = \ - '
' + avatarLink + '
\n' + '
' + avatarLink.strip() + '
\n' # don't create new html within the bookmarks timeline # it should already have been created for the inbox @@ -4208,7 +4208,7 @@ def individualPostAsHtml(recentPostsCache: {}, maxRecentPosts: int, attachmentStr, galleryStr = \ getPostAttachmentsAsHtml(postJsonObject, boxName, translate, - isMuted, avatarLink, + isMuted, avatarLink.strip(), replyStr, announceStr, likeStr, bookmarkStr, deleteStr, muteStr)