mirror of https://gitlab.com/bashrc2/epicyon
Don't remove replies to blog posts, including attachments
parent
7d6a47d967
commit
e4a9db57ce
7
utils.py
7
utils.py
|
@ -440,6 +440,11 @@ def deletePost(baseDir: str, httpPrefix: str,
|
|||
if bookmarkIndex in open(bookmarksIndexFilename).read():
|
||||
return
|
||||
|
||||
# don't remove replies to blog posts
|
||||
if isReplyToBlogPost(baseDir, nickname, domain,
|
||||
postJsonObject):
|
||||
return
|
||||
|
||||
# remove any attachment
|
||||
removeAttachment(baseDir, httpPrefix, domain, postJsonObject)
|
||||
|
||||
|
@ -453,8 +458,6 @@ def deletePost(baseDir: str, httpPrefix: str,
|
|||
getCachedPostFilename(baseDir, nickname, domain, postJsonObject)
|
||||
if cachedPostFilename:
|
||||
if os.path.isfile(cachedPostFilename):
|
||||
if not isReplyToBlogPost(baseDir, nickname, domain,
|
||||
postJsonObject):
|
||||
os.remove(cachedPostFilename)
|
||||
# removePostFromCache(postJsonObject,recentPostsCache)
|
||||
|
||||
|
|
Loading…
Reference in New Issue