mirror of https://gitlab.com/bashrc2/epicyon
Debug for timeline
parent
4a2137654f
commit
3af7fbeda5
8
posts.py
8
posts.py
|
@ -3193,6 +3193,10 @@ def _createBoxIndexed(recentPostsCache: {},
|
||||||
postsInBox, boxActor):
|
postsInBox, boxActor):
|
||||||
postsAddedToTimeline += 1
|
postsAddedToTimeline += 1
|
||||||
totalPostsCount += 1
|
totalPostsCount += 1
|
||||||
|
else:
|
||||||
|
print('WARN: Unable to add post ' + postUrl +
|
||||||
|
' nickname ' + nickname +
|
||||||
|
' timeline ' + boxname)
|
||||||
else:
|
else:
|
||||||
if timelineNickname != nickname:
|
if timelineNickname != nickname:
|
||||||
# if this is the features timeline
|
# if this is the features timeline
|
||||||
|
@ -3204,6 +3208,10 @@ def _createBoxIndexed(recentPostsCache: {},
|
||||||
postsInBox, boxActor):
|
postsInBox, boxActor):
|
||||||
postsAddedToTimeline += 1
|
postsAddedToTimeline += 1
|
||||||
totalPostsCount += 1
|
totalPostsCount += 1
|
||||||
|
else:
|
||||||
|
print('WARN: Unable to add features post ' +
|
||||||
|
postUrl + ' nickname ' + nickname +
|
||||||
|
' timeline ' + boxname)
|
||||||
else:
|
else:
|
||||||
print('WARN: features timeline. ' +
|
print('WARN: features timeline. ' +
|
||||||
'Unable to locate post ' + postUrl)
|
'Unable to locate post ' + postUrl)
|
||||||
|
|
Loading…
Reference in New Issue