diff --git a/webinterface.py b/webinterface.py index eea67c78a..470422faf 100644 --- a/webinterface.py +++ b/webinterface.py @@ -1481,6 +1481,7 @@ def individualPostAsHtml(baseDir: str, \ if not postJsonObject['object']['sensitive']: contentStr=postJsonObject['object']['content']+attachmentStr + contentStr=addEmbeddedVideo(contentStr) else: postID='post'+str(createPassword(8)) contentStr='' @@ -1493,12 +1494,12 @@ def individualPostAsHtml(baseDir: str, \ contentStr+='' contentStr+='
' contentStr+=postJsonObject['object']['content']+attachmentStr + contentStr=addEmbeddedVideo(contentStr) contentStr+='
' if postJsonObject['object'].get('tag'): contentStr=htmlRemplaceEmojiFromTags(contentStr,postJsonObject['object']['tag']) - contentStr=addEmbeddedVideo(contentStr) contentStr='
'+contentStr+'
' return \