merge-requests/8/head
Bob Mottram 2020-09-05 17:35:50 +01:00
parent 43b1fdf67c
commit 2135525d2b
1 changed files with 3 additions and 5 deletions

View File

@ -731,11 +731,9 @@ def getCachedPostFilename(baseDir: str, nickname: str, domain: str,
if '@' not in cachedPostDir:
# print('ERROR: invalid html cache directory '+cachedPostDir)
return None
cachedPostFilename = \
cachedPostDir + \
'/' + removeIdEnding(postJsonObject['id']).replace('/', '#')
cachedPostFilename = cachedPostFilename + '.html'
return cachedPostFilename
cachedPostId = removeIdEnding(postJsonObject['id'])
cachedPostFilename = cachedPostDir + '/' + cachedPostId.replace('/', '#')
return cachedPostFilename + '.html'
def removePostFromCache(postJsonObject: {}, recentPostsCache: {}):