mirror of https://gitlab.com/bashrc2/epicyon
Missing parameter
parent
f78fae4031
commit
5ef83756c3
5
posts.py
5
posts.py
|
@ -3234,7 +3234,7 @@ def _createBoxIndexed(recentPostsCache: {},
|
||||||
# has the post been rejected?
|
# has the post been rejected?
|
||||||
if os.path.isfile(fullPostFilename + '.reject'):
|
if os.path.isfile(fullPostFilename + '.reject'):
|
||||||
continue
|
continue
|
||||||
|
|
||||||
if _addPostToTimeline(fullPostFilename, boxname,
|
if _addPostToTimeline(fullPostFilename, boxname,
|
||||||
postsInBox, boxActor):
|
postsInBox, boxActor):
|
||||||
postsAddedToTimeline += 1
|
postsAddedToTimeline += 1
|
||||||
|
@ -3989,7 +3989,8 @@ def downloadAnnounce(session, baseDir: str, httpPrefix: str,
|
||||||
return None
|
return None
|
||||||
if '/statuses/' not in announcedJson['id']:
|
if '/statuses/' not in announcedJson['id']:
|
||||||
_rejectAnnounce(announceFilename,
|
_rejectAnnounce(announceFilename,
|
||||||
baseDir, nickname, domain, postId)
|
baseDir, nickname, domain, postId,
|
||||||
|
recentPostsCache)
|
||||||
return None
|
return None
|
||||||
if not hasUsersPath(announcedJson['id']):
|
if not hasUsersPath(announcedJson['id']):
|
||||||
_rejectAnnounce(announceFilename,
|
_rejectAnnounce(announceFilename,
|
||||||
|
|
Loading…
Reference in New Issue