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?
|
# is the post in the memory cache of recent ones?
|
||||||
currTlStr = None
|
currTlStr = None
|
||||||
if boxName != 'tlmedia' and recentPostsCache.get('html'):
|
if boxName != 'tlmedia' and recentPostsCache.get('html'):
|
||||||
postId = \
|
postId = removeIdEnding(item['id']).replace('/', '#')
|
||||||
removeIdEnding(item['id']).replace('/', '#')
|
|
||||||
if recentPostsCache['html'].get(postId):
|
if recentPostsCache['html'].get(postId):
|
||||||
currTlStr = recentPostsCache['html'][postId]
|
currTlStr = recentPostsCache['html'][postId]
|
||||||
currTlStr = \
|
currTlStr = \
|
||||||
|
|
Loading…
Reference in New Issue