forked from indymedia/epicyon
Save all instance blogs to the news actor
parent
385ca80995
commit
1da5d5769d
13
outbox.py
13
outbox.py
|
@ -188,11 +188,20 @@ def postMessageToOutbox(messageJson: {}, postToNickname: str,
|
|||
savePostToBox(baseDir,
|
||||
httpPrefix,
|
||||
postId,
|
||||
postToNickname,
|
||||
domainFull, messageJson, outboxName)
|
||||
postToNickname, domainFull,
|
||||
messageJson, outboxName)
|
||||
if not savedFilename:
|
||||
print('WARN: post not saved to outbox ' + outboxName)
|
||||
return False
|
||||
|
||||
# save all instance blogs to the news actor
|
||||
if postToNickname != 'news' and outboxName == 'tlblogs':
|
||||
savePostToBox(baseDir,
|
||||
httpPrefix,
|
||||
postId,
|
||||
'news', domainFull,
|
||||
messageJson, 'tblogs')
|
||||
|
||||
if messageJson['type'] == 'Create' or \
|
||||
messageJson['type'] == 'Question' or \
|
||||
messageJson['type'] == 'Note' or \
|
||||
|
|
Loading…
Reference in New Issue