Don't remove replies to blog posts, including attachments

main
Bob Mottram 2020-05-18 17:21:10 +01:00
parent 7d6a47d967
commit e4a9db57ce
1 changed files with 6 additions and 3 deletions

View File

@ -440,6 +440,11 @@ def deletePost(baseDir: str, httpPrefix: str,
if bookmarkIndex in open(bookmarksIndexFilename).read(): if bookmarkIndex in open(bookmarksIndexFilename).read():
return return
# don't remove replies to blog posts
if isReplyToBlogPost(baseDir, nickname, domain,
postJsonObject):
return
# remove any attachment # remove any attachment
removeAttachment(baseDir, httpPrefix, domain, postJsonObject) removeAttachment(baseDir, httpPrefix, domain, postJsonObject)
@ -453,8 +458,6 @@ def deletePost(baseDir: str, httpPrefix: str,
getCachedPostFilename(baseDir, nickname, domain, postJsonObject) getCachedPostFilename(baseDir, nickname, domain, postJsonObject)
if cachedPostFilename: if cachedPostFilename:
if os.path.isfile(cachedPostFilename): if os.path.isfile(cachedPostFilename):
if not isReplyToBlogPost(baseDir, nickname, domain,
postJsonObject):
os.remove(cachedPostFilename) os.remove(cachedPostFilename)
# removePostFromCache(postJsonObject,recentPostsCache) # removePostFromCache(postJsonObject,recentPostsCache)