mirror of https://gitlab.com/bashrc2/epicyon
Remove ending before checking for cached post
parent
9fd12cc646
commit
4cc4e7b2c7
|
@ -872,8 +872,7 @@ def htmlTimeline(cssCache: {}, defaultTimeline: str,
|
|||
# is the post in the memory cache of recent ones?
|
||||
currTlStr = None
|
||||
if boxName != 'tlmedia' and recentPostsCache.get('html'):
|
||||
postId = \
|
||||
removeIdEnding(item['id']).replace('/', '#')
|
||||
postId = removeIdEnding(item['id']).replace('/', '#')
|
||||
if recentPostsCache['html'].get(postId):
|
||||
currTlStr = recentPostsCache['html'][postId]
|
||||
currTlStr = \
|
||||
|
|
Loading…
Reference in New Issue