mirror of https://gitlab.com/bashrc2/epicyon
Remove spaces
parent
d81157bc39
commit
aa93ad109d
|
@ -3734,7 +3734,7 @@ def individualPostAsHtml(recentPostsCache: {}, maxRecentPosts: int,
|
||||||
translate['Show options for this person'] + \
|
translate['Show options for this person'] + \
|
||||||
'" src="' + avatarUrl + '" ' + avatarPosition + '/></a>\n'
|
'" src="' + avatarUrl + '" ' + avatarPosition + '/></a>\n'
|
||||||
avatarImageInPost = \
|
avatarImageInPost = \
|
||||||
' <div class="timeline-avatar">' + avatarLink + '</div>\n'
|
' <div class="timeline-avatar">' + avatarLink.strip() + '</div>\n'
|
||||||
|
|
||||||
# don't create new html within the bookmarks timeline
|
# don't create new html within the bookmarks timeline
|
||||||
# it should already have been created for the inbox
|
# it should already have been created for the inbox
|
||||||
|
@ -4208,7 +4208,7 @@ def individualPostAsHtml(recentPostsCache: {}, maxRecentPosts: int,
|
||||||
|
|
||||||
attachmentStr, galleryStr = \
|
attachmentStr, galleryStr = \
|
||||||
getPostAttachmentsAsHtml(postJsonObject, boxName, translate,
|
getPostAttachmentsAsHtml(postJsonObject, boxName, translate,
|
||||||
isMuted, avatarLink,
|
isMuted, avatarLink.strip(),
|
||||||
replyStr, announceStr, likeStr,
|
replyStr, announceStr, likeStr,
|
||||||
bookmarkStr, deleteStr, muteStr)
|
bookmarkStr, deleteStr, muteStr)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue