main
Bob Mottram 2020-12-01 14:11:50 +00:00
parent 42a3661d9e
commit 8f164638c0
1 changed files with 3 additions and 4 deletions

View File

@ -1083,16 +1083,15 @@ def getFooterWithIcons(showIcons: bool,
return None
footerStr = '\n <div class="' + containerClassIcons + '">\n'
footerStr += replyStr + announceStr + likeStr + bookmarkStr + \
deleteStr + muteStr + editStr
footerStr += replyStr + announceStr + likeStr + bookmarkStr
footerStr += deleteStr + muteStr + editStr
if not isNewsPost(postJsonObject):
footerStr += ' <a href="' + publishedLink + '" class="' + \
timeClass + '">' + publishedStr + '</a>\n'
else:
footerStr += ' <a href="' + \
publishedLink.replace('/news/', '/news/statuses/') + \
'" class="' + \
timeClass + '">' + publishedStr + '</a>\n'
'" class="' + timeClass + '">' + publishedStr + '</a>\n'
footerStr += ' </div>\n'
return footerStr