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: if '@' not in cachedPostDir:
# print('ERROR: invalid html cache directory '+cachedPostDir) # print('ERROR: invalid html cache directory '+cachedPostDir)
return None return None
cachedPostFilename = \ cachedPostId = removeIdEnding(postJsonObject['id'])
cachedPostDir + \ cachedPostFilename = cachedPostDir + '/' + cachedPostId.replace('/', '#')
'/' + removeIdEnding(postJsonObject['id']).replace('/', '#') return cachedPostFilename + '.html'
cachedPostFilename = cachedPostFilename + '.html'
return cachedPostFilename
def removePostFromCache(postJsonObject: {}, recentPostsCache: {}): def removePostFromCache(postJsonObject: {}, recentPostsCache: {}):