mirror of https://gitlab.com/bashrc2/epicyon
Posts can go into more than one timeline
parent
af7b3d232e
commit
15dc3f8fb3
|
@ -912,14 +912,13 @@ def runNotificationsClient(baseDir: str, proxyType: str, httpPrefix: str,
|
|||
|
||||
# store incoming post
|
||||
speakerJson['decrypted'] = False
|
||||
if encryptedMessage or speakerJson.get('direct'):
|
||||
_storeMessage(speakerJson, 'dm')
|
||||
elif speakerJson.get('replyToYou'):
|
||||
if speakerJson.get('replyToYou'):
|
||||
newRepliesExist = True
|
||||
_storeMessage(speakerJson, 'replies')
|
||||
else:
|
||||
if storeInboxPosts:
|
||||
_storeMessage(speakerJson, 'inbox')
|
||||
if speakerJson.get('direct'):
|
||||
_storeMessage(speakerJson, 'replies')
|
||||
if storeInboxPosts:
|
||||
_storeMessage(speakerJson, 'inbox')
|
||||
|
||||
if not showNewPosts:
|
||||
_clearScreen()
|
||||
|
|
Loading…
Reference in New Issue